Extracted stack files

This commit is contained in:
kekih047
2026-02-08 05:48:49 +00:00
parent 4479b56373
commit 678dd6b73e
82 changed files with 15312 additions and 3 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 />);