Move to subfolder

This commit is contained in:
Eric Liu 2025-05-21 16:18:01 -07:00
parent a88e3afddf
commit 7eae51cc5c
23 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,16 @@
import "./index.css";
import React from "react";
import { createRoot } from "react-dom/client";
import GameView from "./pages/GameView";
const rootElement = document.getElementById("root");
if (!rootElement) {
throw new Error("Root element not found");
}
const root = createRoot(rootElement);
root.render(
<React.StrictMode>
<GameView />
</React.StrictMode>,
);