Skip to content

Instantly share code, notes, and snippets.

@teomanofficial
Created November 9, 2023 18:20
Show Gist options
  • Save teomanofficial/30eb2871a258e982fde2408bd816a84c to your computer and use it in GitHub Desktop.
Save teomanofficial/30eb2871a258e982fde2408bd816a84c to your computer and use it in GitHub Desktop.
Angular Rotues With Guard
const routes: Routes = [
{ path: 'public', component: LoginComponent },
{ path: 'admin', component: AdminComponent, canActivate: [AdminGuard] },
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment