Empty dashboard module
This commit is contained in:
@@ -15,11 +15,11 @@ const routes: Routes = [
|
||||
title: 'Home'
|
||||
},
|
||||
children: [
|
||||
// {
|
||||
// path: 'dashboard',
|
||||
// loadChildren: () =>
|
||||
// import('./views/dashboard/dashboard.module').then((m) => m.DashboardModule)
|
||||
// },
|
||||
{
|
||||
path: 'dashboard',
|
||||
loadChildren: () =>
|
||||
import('./views/dashboard/dashboard.module').then((m) => m.DashboardModule)
|
||||
},
|
||||
{
|
||||
path: 'entities',
|
||||
loadChildren: () =>
|
||||
@@ -37,7 +37,7 @@ const routes: Routes = [
|
||||
},
|
||||
]
|
||||
}
|
||||
];
|
||||
];
|
||||
|
||||
|
||||
@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