Last active
June 11, 2020 20:54
-
-
Save singh100ful/97bdea6b694da3ca625b49ab34ef2666 to your computer and use it in GitHub Desktop.
FieldArray Demonstartion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Formik initialValues={{ diet: [] }}> | |
{(formProps) => ( | |
<Form> | |
<FieldArray | |
name="diet" | |
render={(arrayHelpers) => ( | |
//FieldArray Form | |
)} | |
/> | |
</Form> | |
)} | |
</Formik> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment