Add run management screen to admin panel

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-08 10:54:47 +01:00
parent 5cdcd149b6
commit 3b87397432
7 changed files with 114 additions and 4 deletions

View File

@@ -8,6 +8,7 @@ import {
AdminPokemon,
AdminRouteDetail,
AdminEvolutions,
AdminRuns,
} from './pages/admin'
function App() {
@@ -27,6 +28,7 @@ function App() {
<Route path="games/:gameId/routes/:routeId" element={<AdminRouteDetail />} />
<Route path="pokemon" element={<AdminPokemon />} />
<Route path="evolutions" element={<AdminEvolutions />} />
<Route path="runs" element={<AdminRuns />} />
</Route>
</Route>
</Routes>