diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-07-07 11:48:51 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-07-07 11:48:51 -0700 |
| commit | 4fc648449d2275d34a4f94e8e2671d7d05125b1f (patch) | |
| tree | 3b9f9504bf41caed611978e5cc04813d4789d508 /frontend/src/App.tsx | |
| parent | 7fe146f97ddd3f5a8d0c1a996a73cb296c28b9cc (diff) | |
implement chart view by ID, allow request by pbOnly
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 f6fffca..9c4e8bd 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -6,6 +6,7 @@ import Register from "./pages/Register"; import Import from "./pages/Import"; import Home from "./pages/Home"; import Score from "./pages/Score"; +import Chart from "./pages/Chart"; function App() { return ( @@ -17,6 +18,7 @@ function App() { <Route path="/import" element={<Import />} /> <Route path="/home" element={<Home />} /> <Route path="/score" element={<Score />} /> + <Route path="/chart" element={<Chart />} /> </Routes> </AuthProvider> ); |
