Skip to content

Instantly share code, notes, and snippets.

@singh100ful
Created June 12, 2020 00:07
Show Gist options
  • Save singh100ful/9eb541a9811acdcf0278efd349de7412 to your computer and use it in GitHub Desktop.
Save singh100ful/9eb541a9811acdcf0278efd349de7412 to your computer and use it in GitHub Desktop.
FieldArray Children Type
<Formik initialValues={{ diet: [] }}>
{(formProps) => (
<Form>
<FieldArray name="diet">
{(arrayHelpers) => {
return (
<Form>
{/** whatever you need to do */}
</Form>
);
)}
</FieldArray
</Form>
)}
</Formik>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment