Files
model-platform/frontend/app/routes.ts
T
2026-08-03 10:49:39 +08:00

12 lines
395 B
TypeScript

import { index, type RouteConfig, route } from "@react-router/dev/routes";
export default [
route("login", "routes/login.tsx"),
index("routes/home.tsx"),
route("workbench", "routes/workbench.tsx"),
route("scripts", "routes/scripts.tsx"),
route("schedules", "routes/schedules.tsx"),
route("system", "routes/system.tsx"),
route("*", "routes/platform.tsx"),
] satisfies RouteConfig;