Files
cc710b4c-9dee-41fa-9003-1d3…/src/routes.ts
2026-06-14 05:36:21 +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' },
];