2025-08-20 11:54:40 +01:00

17 lines
567 B
TypeScript

import { type RouteConfig, index, route, prefix } from "@react-router/dev/routes";
export default [
index("pages/HomePage.tsx"),
// route("page2", "pages/Page2.tsx"),
route("dashboard", "pages/Dashboard.tsx", [
index("pages/dashboard/Home.tsx"),
route("test_get_list", "pages/dashboard/PerformanceTestGetList.tsx"),
route("test_push_data", "pages/dashboard/PerformanceTestPushData.tsx"),
route("about", "pages/dashboard/About.tsx"),
route("page2", "pages/dashboard/Page2.tsx"),
]),
] satisfies RouteConfig;