Files
9895fff6-7c8d-4008-ae16-6d3…/src/routes.ts
2026-06-14 03:47:58 +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' },
];