@pega/dx-component-builder-sdk
Version:
Utility for building custom UI components
17 lines (15 loc) • 311 B
text/typescript
export const configProps = {
value: 'John',
label: 'Text Sample',
placeholder: 'Text Placeholder',
testId: 'Text-12345678',
helperText: 'Text Helper Text',
displayMode: '',
readOnly: false,
disabled: false,
hideLabel: false,
required: true
};
export const stateProps = {
value: 'John'
};