i want to create a ngFor Loop without a div tag.
Is this somehow possible?
My Problem is, that when i use a div *ngFor the slider is broken.
<ion-slides #secondSlider [options]="secondSlideOptions" (ionDidChange)="onSecondSlideChanged()">
<!-- This div should not be there -->
<div *ngFor="let set of exercise.sets; let setNumber = index;">
<ion-slide>
...
</ion-slide>
<ion-slide>
...
</ion-slide>
</div>
</ion-slides>
Is there another way to use ngFor without that div container?
Thanks a lot!