Skip to content

Instantly share code, notes, and snippets.

@joaovitorzv
Created April 24, 2020 16:44
Show Gist options
  • Save joaovitorzv/1fcb4b60a499b9def60ea65d78ad9716 to your computer and use it in GitHub Desktop.
Save joaovitorzv/1fcb4b60a499b9def60ea65d78ad9716 to your computer and use it in GitHub Desktop.
({ handleSubmit, handleChange, values, touched, isSubmitting, errors }) => (
<form onSubmit={handleSubmit}>
<input type="text" placeholder="Full name"/>
<input type="text" placeholder="Email" />
<input type="password" placeholder="Password" />
<input type="password" placeholder="Confirm password" />
<button type="submit">
Create account
</button>
</form>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment