Skip to content

Instantly share code, notes, and snippets.

@yuritoledo
Last active April 23, 2019 11:22
Show Gist options
  • Save yuritoledo/210f6bf5e963880d89049d1a8c971a14 to your computer and use it in GitHub Desktop.
Save yuritoledo/210f6bf5e963880d89049d1a8c971a14 to your computer and use it in GitHub Desktop.
<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