Files
7c47852e-396b-4521-a0f0-da0…/src/routes.ts
2026-06-20 11:51: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' },
];