Files
06cf390f-26fc-4f07-9e5b-0fe…/src/routes.ts
2026-06-30 16:32:43 +00:00

11 lines
241 B
TypeScript

export interface Route {
path: string;
label: string;
pageFile: string;
}
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/products', label: 'Products', pageFile: 'ProductsPage' },
];