import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-only-authorized', templateUrl: './only-authorized.component.html', styleUrls: ['./only-authorized.component.css'] }) export class OnlyAuthorizedComponent implements OnInit { constructor() { } ngOnInit(): void { } }