Files
6df05b0c-d4e2-47d6-b823-df6…/src/routes.ts
2026-06-22 16:31:40 +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' },
];