Created
May 18, 2017 20:47
-
-
Save mrcthms/d22b1bd05ed07c27799b36f30836ccbc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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