Skip to content

Instantly share code, notes, and snippets.

@seven-cd
Created August 26, 2017 08:29
Show Gist options
  • Save seven-cd/95e838a95c6a237f54e9905f47efb1ae to your computer and use it in GitHub Desktop.
Save seven-cd/95e838a95c6a237f54e9905f47efb1ae to your computer and use it in GitHub Desktop.
ng2router-nested.js
const appRoutes : Routes = [
{
path: '',
component : PublicComponent,
children: [
{
path: 'book-detail/:id',
component: BookDetailComponent
}
]
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment