Files
a1eaad78-ebf0-4a86-8002-e6b…/src/routes.ts
kudinDmitriyUp 010fc4d615 Initial commit
2026-06-06 14:30:08 +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' },
];