<app-tabs>
<app-tab *ngFor="let tab of tabs">
<app-tab-title>
<b>Title</b> of tab {{tab}}
</app-tab-title>
<app-tab-component>
<b>Title</b> of tab {{tab}}
<some-component [tab]="tab"></some-component>
</app-tab-component>
</app-tab>
</app-tabs>