Files
4ddd7df8-7507-4ef1-b651-bb1…/src/routes.ts
2026-06-22 18:48:32 +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' },
];