// panel-wrapper.component.ts import { Component, ViewChild, ViewContainerRef } from '@angular/core'; import { FieldWrapper } from '@ngx-formly/core'; @Component({ template: ` {{ to.accordionLabel }} `, }) export class FilterWrapperComponent extends FieldWrapper { @ViewChild('fieldComponent', {read: ViewContainerRef}) public fieldComponent: ViewContainerRef; }