blob: 1bca5e8011dd2886b3e8d1b400ab2c5671f7600b (
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;
|