aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/carousel/carousel.component.html
blob: ea522626d5bd32a6a1c3e8e9bab7ee521e476b1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<div class="d-flex flex-row">
    <div class="mx-2" *ngFor="let item of items" [ngSwitch]="item.constructor.name">
        <ng-template ngSwitchCase="Dataset">
            <app-item-dataset [dataset]="item">
            </app-item-dataset>
        </ng-template>
        <ng-template ngSwitchCase="Predictor">
            <app-item-predictor>
            </app-item-predictor>
        </ng-template>
    </div>
</div>