react-tageditor
react-tageditor copied to clipboard
How to integrate with react final form?
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 ?