Empty dashboard module

This commit is contained in:
2023-02-11 18:12:32 +01:00
parent a288d32ec9
commit ebc3835ad4
2 changed files with 20 additions and 6 deletions

View File

@@ -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({

View File

@@ -0,0 +1,14 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
@NgModule({
imports: [
CommonModule,
],
declarations: [
]
})
export class DashboardModule {
}