Files
ddae81d4-e7a0-4e17-bc66-633…/src/routes.ts
2026-06-22 00:54:36 +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' },
];