Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Created May 12, 2019 13:12
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/33dfaf0aa504d6f2a2f17f386ed8f898 to your computer and use it in GitHub Desktop.
Save luandevpro/33dfaf0aa504d6f2a2f17f386ed8f898 to your computer and use it in GitHub Desktop.
import * as Yup from 'yup';
export const validationSchema = Yup.object().shape({
email: Yup.string()
.email('Please enter a valid email')
.required('Please enter an email'),
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment