Form.fields = (globalProps = {}, fields) => Object.assign({}, | |
...Object.entries(fields).map(([fieldKey, field]) => ({ | |
[fieldKey]: { | |
...Form.Field.defaultProps, | |
...{ name: fieldKey }, | |
...globalProps, | |
...field, | |
}, | |
})), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment