Last active
October 17, 2018 12:50
-
-
Save yuritoledo/efe193198e5d067341e801f4a417fce7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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