Skip to content

Instantly share code, notes, and snippets.

@yuritoledo
Last active October 17, 2018 02:19
Show Gist options
  • Save yuritoledo/c05bfc5f310446f593f6021fe9b3cc51 to your computer and use it in GitHub Desktop.
Save yuritoledo/c05bfc5f310446f593f6021fe9b3cc51 to your computer and use it in GitHub Desktop.
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