1 2 3 4 5 6 7 8 9 10
import { Routes } from '@angular/router' import { commentRoutes } from './comments' import { usersRoutes } from './users' import { videosRoutes } from './videos' export const OverviewRoutes: Routes = [ ...commentRoutes, ...usersRoutes, ...videosRoutes ]