Super tabs

can we implement *ngFor and *ngIf together in super tabs. if yes how ? and please give an example.

Hello,
same like any other tags.

<super-tabs #tabcontainer *ngIf="pages" [config]="{ sideMenu: 'left' }" selectedTabIndex="0" (tabSelect)="onTabSelect($event)">
    <super-tab *ngFor="let item of pages" [root]=item id={{item}}></super-tab>

  </super-tabs>