Files
ba80abc8-6f36-4963-a1f5-e74…/src/routes.ts
2026-04-26 23:06:18 +03:00

10 lines
171 B
TypeScript

export interface Route {
path: string;
label: string;
pageFile: string;
}
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
];