I wanna create a kind of container component that modifies all (parent) tags listed in ng-content.
For example all tags within this container shall be wrapped within within a bootstrap-row to define responiveness.
Is this possible. Something like
<ng-content *ngFor="let tag of tags"
<row>{{tag}}<row>
</ng-content>