Skip to content

Instantly share code, notes, and snippets.

@LukeSmetham
Created September 23, 2019 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save LukeSmetham/41c8fb11f17d96a12b09d33a4944e671 to your computer and use it in GitHub Desktop.
Save LukeSmetham/41c8fb11f17d96a12b09d33a4944e671 to your computer and use it in GitHub Desktop.
import * as Yup from 'yup';
export default Yup.object().shape({
username: Yup.string('Must be a valid string.').required('This field is required.'),
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment