import { Route } from '@angular/router'; export const PROVIDER_ROUTES = { path: 'provider', loadComponent: () => import('./layouts/layout.component').then((m) => m.LayoutComponent), children: [ { path: '', loadComponent: () => import('./modules/dashboard/views/index.component').then((m) => m.DashboardComponent), }, ], } as Route;