blob: c8e40d2f5ee11f69268faf6d4d0b71b652ed5d48 [file] [log] [blame]
import {Component, Input} from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ],
})
export class AppComponent {
@Input() toShow: string;
ngOnInit() {
this.toShow = "runsuite";
}
}