fix(charts): import card module

This commit is contained in:
Sergey Andrievskiy 2019-06-20 13:35:48 +03:00
parent 55aa6848f2
commit ee3dde8e43

View file

@ -2,6 +2,7 @@ import { NgModule } from '@angular/core';
import { NgxEchartsModule } from 'ngx-echarts';
import { NgxChartsModule } from '@swimlane/ngx-charts';
import { ChartModule } from 'angular2-chartjs';
import { NbCardModule } from '@nebular/theme';
import { ThemeModule } from '../../@theme/theme.module';
@ -49,7 +50,14 @@ const components = [
];
@NgModule({
imports: [ThemeModule, ChartsRoutingModule, NgxEchartsModule, NgxChartsModule, ChartModule],
imports: [
ThemeModule,
ChartsRoutingModule,
NgxEchartsModule,
NgxChartsModule,
ChartModule,
NbCardModule,
],
declarations: [...routedComponents, ...components],
})
export class ChartsModule {}