I am new to React and was trying out formik with yup for the validation. I am currently getting the error below:
TypeError: Cannot read property 'object' of undefined
with this code:
validationSchema: Yup.object().shape({
firstName: Yup.string().required()
}),
I am using all the latest versions of formik,react and yup. The versions are
"yup": "^0.25.1" "formik": "^0.11.11", "react": "^16.4.0", "react-dom": "^16.4.0",
Could some one help me to resolve this issue?
It is replicated here https://codesandbox.io/s/lrowpj8pq7
Thanks!