Files
c2e443ba-b709-4547-b4fb-a2c…/src/routes.ts
2026-06-21 17:26:17 +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' },
];