Skip to content

Instantly share code, notes, and snippets.

@jacobp100
Created July 14, 2016 19:38
Show Gist options
  • Select an option

  • Save jacobp100/e9fdd04500ac5f45360824076acef5ea to your computer and use it in GitHub Desktop.

Select an option

Save jacobp100/e9fdd04500ac5f45360824076acef5ea to your computer and use it in GitHub Desktop.
const schema = yup.object().shape({
name: yup.string().required('You must provide a name'),
age: yup.number().typeError('Must be a number'),
gender: yup.string().oneOf(['male', 'female'], 'Must select a valid gender'),
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment