Skip to content

Instantly share code, notes, and snippets.

@yuritoledo
Last active October 17, 2018 12:50
Show Gist options
  • Save yuritoledo/efe193198e5d067341e801f4a417fce7 to your computer and use it in GitHub Desktop.
Save yuritoledo/efe193198e5d067341e801f4a417fce7 to your computer and use it in GitHub Desktop.
const FDropdown = ({ field, form: { setFieldValue, setFieldTouched }, ...props }) => (
<>
<label>Super Herói</label> <br />
<Dropdown
{...field}
{...props}
onChange={(e, { value }) => setFieldValue('superHeroi', value)}
onBlur={(e, { value }) => setFieldTouched('superHeroi', true, true)}
/>
</>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment