import { Component, ViewContainerRef, ViewChild } from '@angular/core'; @Component({ selector: 'nb-windows-container', template: ``, styleUrls: ['./windows-container.component.scss'], }) export class NbWindowsContainerComponent { // TODO static must be false as of Angular 9.0.0, issues/1514 @ViewChild('viewContainerRef', { read: ViewContainerRef, static: true }) viewContainerRef: ViewContainerRef; }