Files
e750eb3d-9b4a-4ef0-b3a7-e7a…/src/routes.ts
2026-06-15 10:53:03 +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' },
];