Files
ff1fc61a-336a-46d0-b701-7f2…/src/routes.ts
2026-06-14 03:50:50 +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' },
];