import { Component } from '@angular/core'; @Component({ selector: 'mw-unauthorized', template: ` Unauthorized `, styles: [ ` :host { display: flex; align-items: center; justify-content: center; } `, ], }) export class UnauthorizedComponent {}