Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 523 Bytes

Field.md

File metadata and controls

34 lines (26 loc) · 523 Bytes

Field

Props

Property Type Required?
input Object

The component passes every other prop to the wrapped component.

input shape

Property Type Required?
name String
value String
onBlur Func
onChange Func
onDragStart Func
onDrop Func
onFocus Func

Usage

input = wrapField(Input);

<Field
  name={fieldName}
  type="text"
  component={this.input}
  className={styles.input}
/>