// validate : (value, allValues, props) => error [optional] # | |
export const required = (value) => { | |
if (!value) { | |
return 'This field is required!' | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment