casino/frontend/src/app/app.routes.ts

8 lines
266 B
TypeScript
Raw Normal View History

2024-09-11 10:40:00 +02:00
import { Routes } from '@angular/router';
import {HelloListComponent} from "./hello-list/hello-list.component";
import {authGuard} from "./auth.guard";
export const routes: Routes = [
{ path: 'hello', component: HelloListComponent , canActivate: [authGuard] }
];