Files
d28995e3-4e9f-49b8-b67b-942…/src/routes.ts
2026-06-14 11:35:32 +00:00

10 lines
171 B
TypeScript

export interface Route {
path: string;
label: string;
pageFile: string;
}
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
];