Files
574a3b0a-41a8-4e46-b5d4-e7f…/src/routes.ts
kudinDmitriyUp c19a7b2030 Initial commit
2026-06-03 13:37:31 +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' },
];