This commit is contained in:
2026-02-25 06:59:29 +00:00
parent 88fff9efae
commit acd7713c86
37 changed files with 1581 additions and 69 deletions
@@ -0,0 +1,9 @@
/**
* This file is the entry point for the React app.
*/
import { createRoot } from "react-dom/client";
import { App } from "./App";
const elem = document.getElementById("root")!;
createRoot(elem).render(<App />);