statements.routing.ts
419 Bytes
import { Routes, RouterModule } from '@angular/router';
import { Statements } from './statements.component';
import { BusStop } from './components/busStop/busStop.component';
// noinspection TypeScriptValidateTypes
const routes: Routes = [
{
path: '',
component: Statements,
children: [
{ path: 'bus-stop', component: BusStop }
]
}
];
export const routing = RouterModule.forChild(routes);