chore: add client/src/main.tsx

This commit is contained in:
notshop 2026-04-26 16:35:05 +00:00
parent 18a24c733d
commit d9e77adf5c

5
client/src/main.tsx Normal file
View file

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