52 lines
1.6 KiB
TypeScript
52 lines
1.6 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { RouterModule } from '@angular/router';
|
|
import { EcommerceComponent } from './ecommerce/ecommerce.component';
|
|
import { ChartistModule } from 'ng-chartist';
|
|
import { NgxDatatableModule } from '@swimlane/ngx-datatable';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
|
import { CardModule } from '../partials/general/card/card.module';
|
|
import { NgChartsModule } from 'ng2-charts';
|
|
import { SalesComponent } from './sales/sales.component';
|
|
import { BlockUIModule } from 'ng-block-ui';
|
|
import { BlockTemplateComponent } from '../../_layout/blockui/block-template.component';
|
|
import { MatchHeightModule } from '../partials/general/match-height/match-height.module';
|
|
import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar';
|
|
import { HospitalComponent } from './hospital/hospital.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
ChartistModule,
|
|
FormsModule,
|
|
NgChartsModule,
|
|
CardModule,
|
|
MatchHeightModule,
|
|
NgxDatatableModule,
|
|
PerfectScrollbarModule,
|
|
NgbModule,
|
|
BlockUIModule.forRoot({
|
|
template: BlockTemplateComponent
|
|
}),
|
|
RouterModule.forChild([
|
|
{
|
|
path: 'ecommerce',
|
|
component: EcommerceComponent
|
|
},
|
|
{
|
|
path: 'sales',
|
|
component: SalesComponent
|
|
},
|
|
{
|
|
path: 'hospital',
|
|
component: HospitalComponent
|
|
}
|
|
])
|
|
],
|
|
declarations: [EcommerceComponent, SalesComponent, HospitalComponent],
|
|
|
|
exports: [RouterModule]
|
|
})
|
|
export class DashboardModule { }
|