Skip to content

Instantly share code, notes, and snippets.

@copperwall
Created March 30, 2019 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save copperwall/8ddc54d939c538fe98f9584629b7dc8e to your computer and use it in GitHub Desktop.
Save copperwall/8ddc54d939c538fe98f9584629b7dc8e to your computer and use it in GitHub Desktop.
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