Files
a4e3616a-e1d2-4a12-be15-879…/src/routes.ts
2026-06-23 20:38:19 +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' },
];