diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-05-20 02:46:48 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-05-20 02:48:26 -0700 |
| commit | 7e277bad5bd730947bb4b47cdb4ae362451cfb8a (patch) | |
| tree | 2e4f6c193ab6b3a07375998e555a9b5f9c5c6bc9 /site/src/App.tsx | |
| parent | e8f0e9715595c3f115c5fb72f98aedd6b608ccbd (diff) | |
frontend: convert titlebar menus to full page game selector
- due to growing number of games supported
Diffstat (limited to 'site/src/App.tsx')
| -rw-r--r-- | site/src/App.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/site/src/App.tsx b/site/src/App.tsx index 5142463..79c64a1 100644 --- a/site/src/App.tsx +++ b/site/src/App.tsx @@ -1,13 +1,15 @@ import Home from './pages/Homepage'; +import GameSelector from './pages/GameSelector' import { Routes, Route } from "react-router-dom"; function App() { return ( <Routes> <Route path="/" element={<Home />} /> + <Route path="/games" element={<GameSelector />} /> <Route path="/game/:gameId" element={<Home />} /> </Routes> ); } -export default App;
\ No newline at end of file +export default App; |
