Files
6920e1d1-d28c-455e-ad3d-80e…/src/routes.ts
kudinDmitriyUp 3a3a0a3501 Initial commit
2026-06-12 18:35:56 +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' },
];