Skip to content

Instantly share code, notes, and snippets.

@cybercris
Created March 30, 2020 15:57
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 cybercris/49bb8e23c518012f5c90e172ee02aecc to your computer and use it in GitHub Desktop.
Save cybercris/49bb8e23c518012f5c90e172ee02aecc to your computer and use it in GitHub Desktop.
formik
const formik = useFormik({
initialValues: {
otherData: state.optionalObject.otherData
},
validationSchema: optionalRequiredSchema,
onSubmit: values => {
console.log(values);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment