Files
airport-chengdu-web/src/app/pages/historical-data/historical-data.module.ts
T

18 lines
551 B
TypeScript
Raw Normal View History

2018-10-29 16:27:34 +08:00
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
2018-12-15 17:04:16 +08:00
import { FormsModule } from '@angular/forms';
import { NgZorroAntdModule } from 'ng-zorro-antd'
2018-10-29 16:27:34 +08:00
import { HistoricalDataComponent } from './historical-data.component';
import { HistoricalDataRouting } from './historical-data-routing.module';
2018-12-15 17:04:16 +08:00
2018-10-29 16:27:34 +08:00
@NgModule({
imports: [
CommonModule,
2018-12-15 17:04:16 +08:00
FormsModule,
NgZorroAntdModule,
HistoricalDataRouting
2018-10-29 16:27:34 +08:00
],
declarations: [HistoricalDataComponent]
})
export class HistoricalDataModule { }