Files
4e54e45b-3f2e-4b72-b28b-7e8…/src/routes.ts
2026-06-21 12:09:11 +00:00

11 lines
249 B
TypeScript

export interface Route {
path: string;
label: string;
pageFile: string;
}
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/bed-product', label: 'Bed Product', pageFile: 'BedProductPage' },
];