refactor user accounts structure
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user