Skip to content

Instantly share code, notes, and snippets.

@santosh-btc
Created June 24, 2018 10:51
Show Gist options
  • Save santosh-btc/4e17999d312a8481f78e2a08fcf3aebb to your computer and use it in GitHub Desktop.
Save santosh-btc/4e17999d312a8481f78e2a08fcf3aebb to your computer and use it in GitHub Desktop.
function validate(values) {
const errors = {}
if (!values.firstName) {
errors.firstName = 'Required'
}
return errors
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment