Last active
October 17, 2018 02:19
-
-
Save yuritoledo/c05bfc5f310446f593f6021fe9b3cc51 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
import { Input } from 'semantic-ui-react' | |
// Component | |
<Field name='nome' component={FInput} /> | |
const FInput = ({ field, ...props }) => ( | |
<Input {...field} {...props} /> | |
) | |
// Render | |
<Field | |
name='senha' | |
render={({ field }) => ( | |
<Input {...field} /> | |
)} | |
/> | |
//Children | |
<Field name='email'> | |
{({ field }) => ( | |
<Input {...field} /> | |
)} | |
</Field> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment