Files
7cfd7724-27a5-4350-bec7-e9c…/src/routes.ts
2026-06-14 11:41:11 +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' },
];