@acorel/contentful-integration
Version:
Contentful integration with SAP Composable Storefront by Acorel
16 lines (11 loc) • 386 B
HTML
<div *ngIf="data$ | async as data" class="contentful-container">
<ng-container *ngFor="let component of data.components">
<ng-template
*ngIf="component.flexType"
[cxOutlet]="component.flexType"
[cxOutletContext]="{ component: component }"
>
<ng-container [cxComponentWrapper]="component"></ng-container>
</ng-template>
</ng-container>
</div>