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