import { Component, ViewContainerRef, ViewChild, Input} from '@angular/core' import { HomeScreenHeaderOptions } from '../types/home-screen-types'; @Component({ selector: 'home-screen-header', templateUrl: './home-screen-header.html', styleUrls: ['./home-screen-header.css'] }) export class HomeScreenHeaderComponent { @Input() private headerConfig: HomeScreenHeaderOptions; @ViewChild('main_content', { read: ViewContainerRef }) private _content: ViewContainerRef; constructor() { } get content(): ViewContainerRef { return this._content; } clickBtnActions(e: any) { e.preventDefault(); } }