aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/routes.tsx
blob: 1316b5eaa61732ad317dd19a17f3a0a5103c884f (plain)
1
2
3
4
5
6
7
8
9
10
11
import { type RouteConfig, index, route } from "@react-router/dev/routes";

export default [
  index("routes/home.tsx"),
  route("/map", "routes/map.tsx"),
  route("/stops", "routes/stops.tsx"),
  route("/stops/:id", "routes/stops-$id.tsx"),
  route("/estimates/:id", "routes/estimates-$id.tsx"),
  route("/timetable/:id", "routes/timetable-$id.tsx"),
  route("/settings", "routes/settings.tsx"),
] satisfies RouteConfig;