Skip to content

Instantly share code, notes, and snippets.

@bicknest
Created June 1, 2020 03:01
Show Gist options
  • Save bicknest/2c57a4b00edd97f6d2f9456586a3f84b to your computer and use it in GitHub Desktop.
Save bicknest/2c57a4b00edd97f6d2f9456586a3f84b to your computer and use it in GitHub Desktop.
SchemaValidation
const ProfileFormSchema = Yup.object().shape({
name: Yup.string().required("Required"),
age: Yup.number(),
phoneNumber: Yup.string()
.matches(phoneRegExp, "Phone is not valid")
.required("Required"),
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment