Submitting Formik form in React Native
I am building a React Native app that uses Formik. When I submit the form I call handleSubmit <Formik onSubmit={values => { handleSubmit(values) }}> I define this before the return on my form: const handleSubmit = (values) => { const…