18 lines
428 B
TypeScript
18 lines
428 B
TypeScript
import { NgModule } from '@angular/core';
|
|||
|
|
import { RouterModule, Routes } from '@angular/router';
|
||
|
|
|
||
|
|
import { HistoricalDataComponent } from './historical-data.component';
|
||
|
|
|
||
|
|
const historicalDataRoutes: Routes = [
|
||
|
|
{
|
||
|
|
path: '',
|
||
|
|
component: HistoricalDataComponent
|
||
|
|
}
|
||
|
|
]
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [RouterModule.forChild(historicalDataRoutes)],
|
||
|
|
exports: [RouterModule]
|
||
|
|
})
|
||
|
|
|
||
|
|
export class HistoricalDataRouting { }
|