react-tageditor icon indicating copy to clipboard operation
react-tageditor copied to clipboard

How to integrate with react final form?

Open sirramin opened this issue 4 years ago • 0 comments

I integrate react select with react final form like this:

const ReactSelectAdapter = ({input, ...rest}) => (
  <Select {...input} {...rest} />
);
<Field name="quantity" component={ReactSelectAdapter} />

how is this possible with this component ?

sirramin avatar Apr 01 '20 22:04 sirramin