Created
November 12, 2017 14:41
-
-
Save tieppt/44523c9d1c52bccfb9b25e6603a67727 to your computer and use it in GitHub Desktop.
routing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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