Skip to content

Instantly share code, notes, and snippets.

@tieppt
Created November 12, 2017 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tieppt/44523c9d1c52bccfb9b25e6603a67727 to your computer and use it in GitHub Desktop.
Save tieppt/44523c9d1c52bccfb9b25e6603a67727 to your computer and use it in GitHub Desktop.
routing
export const routes: Routes = [
{
path: 'login',
component: LoginComponent
}, {
path: 'register',
component: RegisterComponent
}, {
path: '',
children: [
{
path: 'home',
component: HomeComponent
}, {
// ... more routes config
}
]
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment