diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-09-03 21:45:38 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-09-03 21:45:38 -0700 |
| commit | 159cac6460fb2a42456c6f9a44cbcdb03b938823 (patch) | |
| tree | fb39937774a9bdf99f932b2df6bcab433dcfe4bb /frontend/src/App.tsx | |
| parent | c8bae6ab79a32da0fe745ebb9401e14f86c1f0d8 (diff) | |
implement admin dashboard frontend and handle game creation
Diffstat (limited to 'frontend/src/App.tsx')
| -rw-r--r-- | frontend/src/App.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 9c4e8bd..9b0e058 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -7,6 +7,7 @@ import Import from "./pages/Import"; import Home from "./pages/Home"; import Score from "./pages/Score"; import Chart from "./pages/Chart"; +import Admin from "./pages/Admin"; function App() { return ( @@ -19,6 +20,7 @@ function App() { <Route path="/home" element={<Home />} /> <Route path="/score" element={<Score />} /> <Route path="/chart" element={<Chart />} /> + <Route path="/admin" element={<Admin />} /> </Routes> </AuthProvider> ); |
