12 lines
468 B
TypeScript
12 lines
468 B
TypeScript
import { type RouteConfig, index, route } from "@react-router/dev/routes";
|
|
|
|
export default [
|
|
index("routes/home.tsx"),
|
|
route("song/:id/info", "routes/song/[id]/info/index.tsx"),
|
|
route("song/:id/add", "routes/song/[id]/add.tsx"),
|
|
route("search", "routes/search/index.tsx"),
|
|
route("login", "routes/login.tsx"),
|
|
route("video/:id/info", "routes/video/[id]/info/index.tsx"),
|
|
route("util/time-calculator", "routes/util/time-calculator.tsx"),
|
|
] satisfies RouteConfig;
|