Skip to content

Commit

Permalink
add catch-all route
Browse files Browse the repository at this point in the history
  • Loading branch information
jdgarvey committed May 10, 2016
1 parent 346c9d0 commit 8607fde
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/app.component.ts
Expand Up @@ -17,6 +17,7 @@ import {ExperimentsService} from './common/experiments.service';
{path: '/', component: HomeComponent },
{path: '/home', component: HomeComponent },
{path: '/about', component: AboutComponent },
{path: '/experiments', component: ExperimentsComponent }
{path: '/experiments', component: ExperimentsComponent },
{path: '/*', component: HomeComponent }
])
export class AppComponent {}

0 comments on commit 8607fde

Please sign in to comment.