mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-19 00:40:12 +01:00
feat(charts): add the charts examples
This commit is contained in:
parent
e8dc2b9c72
commit
20a05654f4
19 changed files with 655 additions and 13 deletions
18
src/app/pages/charts/charts.module.ts
Normal file
18
src/app/pages/charts/charts.module.ts
Normal 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 { }
|
||||
Loading…
Add table
Add a link
Reference in a new issue