Skip to content

Instantly share code, notes, and snippets.

@joaovitorzv
Created April 25, 2020 14:40
Show Gist options
  • Save joaovitorzv/b58c60ba477033ec7715382892aed6a3 to your computer and use it in GitHub Desktop.
Save joaovitorzv/b58c60ba477033ec7715382892aed6a3 to your computer and use it in GitHub Desktop.
validate={
values => {
let errors = {};
if (emailsAlreadyInUse.includes(values.email)) {
errors.email = 'email is already in use';
}
return errors;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment