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 { }