Created
June 12, 2020 00:04
-
-
Save singh100ful/75bc13eec2690a53568e594bf574044d to your computer and use it in GitHub Desktop.
FieldArray Component Types
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
export const FormComponent = ({ | |
arrayHelpers | |
}) => ( | |
<Form> | |
{/** whatever you need to do */} | |
</Form> | |
); | |
<Formik initialValues={{ diet: [] }}> | |
{(formProps) => ( | |
<Form> | |
<FieldArray | |
name="diet" | |
component={FormComponent} | |
/> | |
</Form> | |
)} | |
</Formik> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment