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

export default [
  index("routes/home.tsx"),
  route("/map", "routes/map.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;