Files
3c1d6e2d-cfab-4159-a0a7-e65…/src/routes.ts
kudinDmitriyUp 9527e429e9 Initial commit
2026-05-19 16:50:02 +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' },
];