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

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