Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 882 Bytes

TextArea.md

File metadata and controls

34 lines (27 loc) · 882 Bytes

TextArea

Props

Property Type Required? Description
className String Custom styles to apply to the text area container
value String As this is a controlled component, the input value must be passed to update the component's value
onChange Func Function to be called on text area input change
onBlur Func Function to be called on text area input blur
onFocus Func Function to be called on text area input focus

Usage

<TextArea
  className={styles.textArea}
  value={this.textArea}
  onChange={this.handleChange}
  onFocus={this.handleFocus}
/>

If you decided to use redux-form you must add it to the component and use it in this way.

textArea = wrapField(TextArea);

<Field
  name={fieldName}
  component={this.textArea}
  className={styles.textArea}
/>