diff options
Diffstat (limited to 'site/src/App.tsx')
| -rw-r--r-- | site/src/App.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/site/src/App.tsx b/site/src/App.tsx index 79c64a1..b6823a6 100644 --- a/site/src/App.tsx +++ b/site/src/App.tsx @@ -1,5 +1,6 @@ import Home from './pages/Homepage'; import GameSelector from './pages/GameSelector' +import NotFound from './pages/NotFound'; import { Routes, Route } from "react-router-dom"; function App() { @@ -8,6 +9,7 @@ function App() { <Route path="/" element={<Home />} /> <Route path="/games" element={<GameSelector />} /> <Route path="/game/:gameId" element={<Home />} /> + <Route path="*" element={<NotFound />} /> </Routes> ); } |
