diff options
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> ); |
