14 lines
407 B
TypeScript
14 lines
407 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { HistoricalDataComponent } from './historical-data.component';
|
|
import { HistoricalDataRouting } from './historical-data-routing.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
HistoricalDataRouting
|
|
],
|
|
declarations: [HistoricalDataComponent]
|
|
})
|
|
export class HistoricalDataModule { }
|