Form.onChangeFactory = fn => (form, fieldKey) => updatedProps => fn({ | |
...form, | |
fields: { | |
...form.fields, | |
[fieldKey]: { | |
...form.fields[fieldKey], | |
...updatedProps, | |
}, | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment