9 lines
228 B
TypeScript
9 lines
228 B
TypeScript
import { type RouteConfig, index, prefix, route } from "@react-router/dev/routes";
|
|
|
|
export default [
|
|
index("routes/home.tsx"),
|
|
...prefix("auth",[
|
|
index("./routes/auth/login.tsx"),
|
|
])
|
|
] satisfies RouteConfig;
|