mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-19 00:40:12 +01:00
19 lines
399 B
TypeScript
19 lines
399 B
TypeScript
|
|
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 { }
|