init client

This commit is contained in:
Ashwin Bhat
2024-10-07 16:28:05 -07:00
parent 70a9f96712
commit 3cdd6faed7
33 changed files with 3256 additions and 0 deletions

10
client/src/main.tsx Normal file
View File

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