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

18 lines
551 B
TypeScript

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { NgZorroAntdModule } from 'ng-zorro-antd'
import { HistoricalDataComponent } from './historical-data.component';
import { HistoricalDataRouting } from './historical-data-routing.module';
@NgModule({
imports: [
CommonModule,
FormsModule,
NgZorroAntdModule,
HistoricalDataRouting
],
declarations: [HistoricalDataComponent]
})
export class HistoricalDataModule { }