Empty dashboard module
This commit is contained in:
@@ -15,11 +15,11 @@ const routes: Routes = [
|
|||||||
title: 'Home'
|
title: 'Home'
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
// {
|
{
|
||||||
// path: 'dashboard',
|
path: 'dashboard',
|
||||||
// loadChildren: () =>
|
loadChildren: () =>
|
||||||
// import('./views/dashboard/dashboard.module').then((m) => m.DashboardModule)
|
import('./views/dashboard/dashboard.module').then((m) => m.DashboardModule)
|
||||||
// },
|
},
|
||||||
{
|
{
|
||||||
path: 'entities',
|
path: 'entities',
|
||||||
loadChildren: () =>
|
loadChildren: () =>
|
||||||
@@ -37,7 +37,7 @@ const routes: Routes = [
|
|||||||
},
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
|
|||||||
14
front/app/src/app/views/dashboard/dashboard.module.ts
Normal file
14
front/app/src/app/views/dashboard/dashboard.module.ts
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
import { CommonModule } from '@angular/common';
|
||||||
|
import { NgModule } from '@angular/core';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
imports: [
|
||||||
|
CommonModule,
|
||||||
|
],
|
||||||
|
declarations: [
|
||||||
|
]
|
||||||
|
})
|
||||||
|
export class DashboardModule {
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user