|
@@ -6,6 +6,11 @@ import { HeaderComponent } from './layout/header/header.component';
|
|
import { SideBarComponent } from './layout/side-bar/side-bar.component';
|
|
import { SideBarComponent } from './layout/side-bar/side-bar.component';
|
|
import { MainComponent } from './layout/main/main.component';
|
|
import { MainComponent } from './layout/main/main.component';
|
|
import { FooterComponent } from './layout/footer/footer.component';
|
|
import { FooterComponent } from './layout/footer/footer.component';
|
|
|
|
+import { ModuleDashboardComponent } from './module/module-dashboard/module-dashboard.component';
|
|
|
|
+import { ModuleUserComponent } from './module/module-user/module-user.component';
|
|
|
|
+import { ModuleSettingComponent } from './module/module-setting/module-setting.component';
|
|
|
|
+import { ModuleReportComponent } from './module/module-report/module-report.component';
|
|
|
|
+import { AppRoutingModule } from './app-routing.module';
|
|
|
|
|
|
@NgModule({
|
|
@NgModule({
|
|
declarations: [
|
|
declarations: [
|
|
@@ -13,10 +18,15 @@ import { FooterComponent } from './layout/footer/footer.component';
|
|
HeaderComponent,
|
|
HeaderComponent,
|
|
SideBarComponent,
|
|
SideBarComponent,
|
|
MainComponent,
|
|
MainComponent,
|
|
- FooterComponent
|
|
|
|
|
|
+ FooterComponent,
|
|
|
|
+ ModuleDashboardComponent,
|
|
|
|
+ ModuleUserComponent,
|
|
|
|
+ ModuleSettingComponent,
|
|
|
|
+ ModuleReportComponent
|
|
],
|
|
],
|
|
imports: [
|
|
imports: [
|
|
- BrowserModule
|
|
|
|
|
|
+ BrowserModule,
|
|
|
|
+ AppRoutingModule
|
|
],
|
|
],
|
|
providers: [],
|
|
providers: [],
|
|
bootstrap: [AppComponent]
|
|
bootstrap: [AppComponent]
|