Last active
October 29, 2019 14:10
-
-
Save thedevankit/fc75f6cbd055b294aec5ea2e38319b79 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const appRoutes: Routes = [ | |
{ | |
path: 'home', | |
component: HomeComponent, | |
data: { title: 'Home ' } | |
}, | |
{ | |
path: 'contact', | |
component: ContactComponent, | |
data: { title: 'Home ' } | |
}, | |
{ | |
path: 'about', | |
component: AboutComponent, | |
data: { title: 'Home ' } | |
}, | |
{ | |
path: '', | |
redirectTo: '/home', | |
pathMatch: 'full' | |
}, | |
{ | |
path: '**', | |
component: PageNotFoundComponent | |
} | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment