Initial commit

This commit is contained in:
2023-10-29 19:28:07 +00:00
commit b0d0353ba7
25 changed files with 7930 additions and 0 deletions

6
src/client/index.ts Normal file
View File

@ -0,0 +1,6 @@
import { createRoot } from "react-dom/client";
import { app } from "./app.js";
const domNode = document.getElementById("root")!;
const root = createRoot(domNode);
root.render(app);