Files
77732b28-d2e5-4112-8f49-e68…/src/routes.ts
2026-06-13 19:08:41 +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' },
];