Files
d0021d07-a4e5-4871-9e92-558…/src/routes.ts
2026-06-19 17:50:52 +00:00

11 lines
244 B
TypeScript

export interface Route {
path: string;
label: string;
pageFile: string;
}
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/servicios', label: 'Servicios', pageFile: 'ServiciosPage' },
];