Files
landingNew/client/src/main.tsx
2026-02-08 05:48:49 +00:00

6 lines
157 B
TypeScript

import { createRoot } from "react-dom/client";
import App from "./App";
import "./index.css";
createRoot(document.getElementById("root")!).render(<App />);