Last active
April 23, 2019 11:22
-
-
Save yuritoledo/210f6bf5e963880d89049d1a8c971a14 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
<Field name='firstName' component={CustomInputComponent} /> | |
| |
const CustomInputComponent = ({ field, …props }) => ( | |
<div> | |
<InputCustom {…field} {…props} /> | |
</div> | |
); | |
// ou | |
<Field | |
name='firstName' | |
render={ ({field}) => ( | |
<div> | |
<InputCustom {...field} /> | |
</div> | |
)} | |
/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment