Files
8e4b8d50-789d-4d50-a97f-f7f…/src/routes.ts
2026-06-13 10:53:51 +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' },
];