Files
a152e944-c0ef-46f7-abbf-65d…/src/routes.ts
kudinDmitriyUp cb9e88e0fb Initial commit
2026-06-01 13:31:12 +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' },
];