From d9e77adf5cfd4788b38004c0c7e2f98abda72717 Mon Sep 17 00:00:00 2001 From: notshop Date: Sun, 26 Apr 2026 16:35:05 +0000 Subject: [PATCH] chore: add client/src/main.tsx --- client/src/main.tsx | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 client/src/main.tsx 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();