Files
d1c3e89d-3870-4aa7-a263-99b…/src/routes.ts
2026-06-15 12:56:01 +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' },
];