Skip to content

Instantly share code, notes, and snippets.

@GerritRiesch94
Last active April 13, 2023 13:18
Show Gist options
  • Save GerritRiesch94/930358bf848701405f8616d3d208f538 to your computer and use it in GitHub Desktop.
Save GerritRiesch94/930358bf848701405f8616d3d208f538 to your computer and use it in GitHub Desktop.
Old App Routing Module with AuthGuard
const routes: Routes = [
{
path: 'home',
loadComponent: () => import('./home/home.component').then(m => m.HomeComponent),
canActivate: [AuthGuard]
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment