mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-02-19 22:48:08 +01:00
27 lines
662 B
TypeScript
27 lines
662 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { NgaModule } from '../../theme/nga.module';
|
|
|
|
import { routing } from './charts.routing';
|
|
import { Charts } from './charts.component';
|
|
import { ChartistJs } from './components/chartistJs/chartistJs.component';
|
|
import { ChartistJsService } from './components/chartistJs/chartistJs.service';
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
NgaModule,
|
|
routing
|
|
],
|
|
declarations: [
|
|
Charts,
|
|
ChartistJs
|
|
],
|
|
providers: [
|
|
ChartistJsService
|
|
]
|
|
})
|
|
export class ChartsModule {}
|