Added a test page

This commit is contained in:
2025-03-16 23:42:30 +01:00
parent 04b2536aac
commit aee597acf2
3 changed files with 32 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
import { type RouteConfig, index } from "@react-router/dev/routes";
import { type RouteConfig, index, route } from "@react-router/dev/routes";
export default [index("routes/home.tsx")] satisfies RouteConfig;
export default [
index("routes/home.tsx"),
route("/test", "routes/test.tsx"),
] satisfies RouteConfig;