Files
ab0d077e-33ec-4c3a-ae50-5b4…/src/routes.ts
2026-06-21 09:54:00 +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' },
];