diff --git a/client/src/main.tsx b/client/src/main.tsx new file mode 100644 index 0000000..696e0d2 --- /dev/null +++ b/client/src/main.tsx @@ -0,0 +1,5 @@ +import { createRoot } from "react-dom/client"; +import App from "./App"; +import "./index.css"; + +createRoot(document.getElementById("root")!).render();