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