Files
a0c4c434-575b-4df8-8a39-afa…/src/routes.ts
2026-06-22 18:10:43 +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' },
];