Skip to content

Instantly share code, notes, and snippets.

@KTruong008
Created September 9, 2017 23:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KTruong008/9acf945a8d1a2dfbccd86d1f55d9aaca to your computer and use it in GitHub Desktop.
Save KTruong008/9acf945a8d1a2dfbccd86d1f55d9aaca to your computer and use it in GitHub Desktop.
// 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