feat(charts): add the charts examples

This commit is contained in:
Alexander Zhukov 2017-05-11 18:31:55 +03:00
parent e8dc2b9c72
commit 20a05654f4
19 changed files with 655 additions and 13 deletions

View file

@ -0,0 +1,18 @@
import { NgModule } from '@angular/core';
import { NgaChartsModule } from '@nga/theme';
import { SharedModule } from '../../shared.module';
import { ChartsRoutingModule, routedComponents } from './charts-routing.module';
@NgModule({
imports: [
SharedModule,
NgaChartsModule,
ChartsRoutingModule,
],
declarations: [
...routedComponents,
],
})
export class ChartsModule { }