src/app/modules/dashboard/dashboard.module.ts
Модуль рабочего стола
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { TopMenuBxModule } from 'glx.ui/components/topMenuBx/topMenuBx';
import { PageTitleBxModule } from 'glx.ui/components/pageTitleBx/pageTitleBx';
import { DashboardPanelModule } from 'glx.ui/components/dashboardPanel/dashboardPanel';
import { DashboardComponent } from './dashboard.component';
import { DashboardHomeComponent } from './home/home';
import { ProfileService } from 'glx.ui/components/kernel/services/profile.service';
import { CommonService } from 'glx.ui/components/kernel/services/common.service';
import { DashboardRoutingModule } from './dashboard.routing.module';
const GLX_UI_MODULES = [
TopMenuBxModule,
PageTitleBxModule,
DashboardPanelModule
];
/**
* Модуль рабочего стола
*/
@NgModule({
imports: [
CommonModule,
DashboardRoutingModule,
GLX_UI_MODULES
],
declarations: [
DashboardComponent,
DashboardHomeComponent
],
providers: [
ProfileService,
CommonService
]
})
export class DashboardModule {
}