Skip to content

Instantly share code, notes, and snippets.

@PetraSp
Created December 27, 2018 11:35
Show Gist options
  • Save PetraSp/08a340d756433656b5056cc183be9806 to your computer and use it in GitHub Desktop.
Save PetraSp/08a340d756433656b5056cc183be9806 to your computer and use it in GitHub Desktop.
const appRoutes: Routes = [
 {
 path: '', component: ShellComponent,
 children: [
 { path: 'welcome', component: WelcomeComponent },
 { path: '', redirectTo: 'welcome', pathMatch: 'full' },
 { path: '**', component: PageNotFoundComponent }
 ]
 },
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment