Files
4fa1fff9-4ca0-41af-bac7-e88…/src/routes.ts
2026-06-30 17:00: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' },
];