Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Created June 3, 2019 15:11
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 luandevpro/c94ec45d61f2fbf762cdb162f634b5fb to your computer and use it in GitHub Desktop.
Save luandevpro/c94ec45d61f2fbf762cdb162f634b5fb to your computer and use it in GitHub Desktop.
import * as Yup from 'yup';
const validate = Yup.object().shape({
languages: Yup.array()
.required('Must have languages')
.min(2, 'Minimum of 2 languages'),
});
export default validate;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment