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

18 lines
428 B
TypeScript
Raw Normal View History

2018-10-29 16:27:34 +08:00
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 { }