I'm looking for a way to extract the content from within my component call. Is there a method to achieve this?
<my-component>get what is here inside in my-component</my-component>
<my-select [list]="LMObjects" [multiple]="true">{{MyObject.MyName}}</my-select>
and it will produce
<mat-form-field>
<mat-select multiple="@InputMultiple">
<mat-option *ngFor="let obj of ListObj" [value]="obj.id">
{{@InputChildBlock}} // duplicate block inside tags
</mat-option>
</mat-select>
</mat-form-field>