@pega/dx-component-builder-sdk
Version:
Utility for building custom UI components
7 lines (6 loc) • 461 B
HTML
<div [ngSwitch]="this.thePConnType">
<component-mapper *ngSwitchCase="'ViewContainer'" name="ViewContainer" [props]="{ pConn$, formGroup$ }"></component-mapper>
<!-- NOTE: when we get the view, we want to render it as a wide-narrow-form -->
<component-mapper *ngSwitchCase="'View'" name="WideNarrowForm" [props]="{ pConn$, formGroup$ }"></component-mapper>
<div *ngSwitchDefault>WideNarrowPage missing: {{ this.pConn$.getComponentName() }}</div>
</div>