Skip to content

Instantly share code, notes, and snippets.

@singh100ful
Created June 12, 2020 00:04
Show Gist options
  • Save singh100ful/75bc13eec2690a53568e594bf574044d to your computer and use it in GitHub Desktop.
Save singh100ful/75bc13eec2690a53568e594bf574044d to your computer and use it in GitHub Desktop.
FieldArray Component Types
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