12 lines
395 B
TypeScript
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;
|