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'
};
