Extracted stack files

This commit is contained in:
2026-03-25 20:56:28 +00:00
parent 37d0fa9ff3
commit ce13860cd1
75 changed files with 14782 additions and 53 deletions

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 />);