import { Component, OnInit, HostBinding, Input } from '@angular/core'; /** * This class represents the main application component. */ @Component({ selector: 'global-app', templateUrl: 'app.component.html' }) export class AppComponent implements OnInit { @HostBinding('class.uhg') changeBranding = false; ngOnInit() { this.changeBranding = true; } }