Files
8fb7e5f8-6348-4cc5-91c1-651…/src/routes.ts
2026-06-21 17:55:52 +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' },
];