7 lines
202 B
TypeScript
7 lines
202 B
TypeScript
import { type RouteConfig, index, route } from "@react-router/dev/routes";
|
|
|
|
export default [
|
|
index("routes/home.tsx"),
|
|
route("crypto/:id", "routes/crypto-details.tsx"),
|
|
] satisfies RouteConfig;
|