Files
872e9fb3-d9b2-448c-8337-a4a…/src/routes.ts
2026-06-14 12:48:15 +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' },
];