Skip to content

Instantly share code, notes, and snippets.

@ericvaladas
Last active March 4, 2018 01:41
Show Gist options
  • Save ericvaladas/5830c698171278d8c45e385121e87947 to your computer and use it in GitHub Desktop.
Save ericvaladas/5830c698171278d8c45e385121e87947 to your computer and use it in GitHub Desktop.
render() {
return (
<Form onSubmit={form => this.handleSubmit(form)}>
<Field validators={[minLength(3)]}>
{state =>
<div>
<input name="username"/>
<span>{state.message}</span>
</div>
}
</Field>
<button>Submit</button>
</Form>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment