Skip to content

Instantly share code, notes, and snippets.

@mrcthms
Created May 18, 2017 20:47
Show Gist options
  • Save mrcthms/d22b1bd05ed07c27799b36f30836ccbc to your computer and use it in GitHub Desktop.
Save mrcthms/d22b1bd05ed07c27799b36f30836ccbc to your computer and use it in GitHub Desktop.
const propTypesToDescriptions = ({ propTypes, data }) => Object.keys(propTypes).reduce((obj, curr) => ({
...obj,
[curr]: {
description: data[curr]
}
}), {});
export default propTypesToDescriptions;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment