14 lines
369 B
TypeScript
14 lines
369 B
TypeScript
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;
|