Files
1045e4ec-d7df-42da-b3f7-bea…/src/routes.ts
2026-06-14 10:54:58 +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' },
];