2018-10-29 16:27:34 +08:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { HistoricalDataComponent } from './historical-data.component';
|
|
|
|
|
import { HistoricalDataRouting } from './historical-data-routing.module';
|
2018-11-30 17:55:39 +08:00
|
|
|
import { FormsModule } from '@angular/forms';
|
2018-10-29 16:27:34 +08:00
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
2018-11-30 17:55:39 +08:00
|
|
|
HistoricalDataRouting,
|
|
|
|
|
FormsModule
|
2018-10-29 16:27:34 +08:00
|
|
|
],
|
|
|
|
|
declarations: [HistoricalDataComponent]
|
|
|
|
|
})
|
|
|
|
|
export class HistoricalDataModule { }
|