import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-protected', template: '

This route is protected!

', styles: [], }) export class ProtectedComponent implements OnInit { constructor() {} ngOnInit(): void {} }