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

This route is unprotected!

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