Files
d00468c6-76c6-4613-a60b-8d0…/src/routes.ts
2026-06-21 17:48: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' },
];