Skip to content

Instantly share code, notes, and snippets.

@thedevankit
Last active October 29, 2019 14:10
Show Gist options
  • Save thedevankit/fc75f6cbd055b294aec5ea2e38319b79 to your computer and use it in GitHub Desktop.
Save thedevankit/fc75f6cbd055b294aec5ea2e38319b79 to your computer and use it in GitHub Desktop.
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