Cupcake/app/routes.ts

18 lines
418 B
TypeScript

import {
type RouteConfig,
index,
layout,
route,
} from "@react-router/dev/routes";
export default [
layout("routes/app-layout.tsx", [
index("routes/index.tsx"),
route("note", "routes/note.tsx"),
route("note/:year/:id", "routes/note-detail.tsx"),
route("gallery/*", "routes/gallery.tsx"),
route("say", "routes/say.tsx"),
route("*", "routes/page.tsx"),
]),
] satisfies RouteConfig;