Angular2 RC1 child routes defined but not recognized
What used to work for beta /... is no longer working. With the new new RC1 router, how do I do the child routing? Folder structure app |--home/ | |--home.component.ts |--login/ | |--login.ts |--appShell/ | |--app.component.ts |--apps/ |--hero/ |--hero-shell.component.ts |--horees.component.ts |--hero-detail.component.ts The planned navigation is app.component -> home.component -> heroshell.component -> heroes.component app.component.ts routes @Routes([ { path: '/heroshell', component: HeroShellComponent }, { path: '/home', component: HomeComponent }, { path: '/login', component: Login }, ])