Last active
December 3, 2018 17:03
-
-
Save olecksamdr/9f7ed96353e70cbcd7592e7245aa5d54 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
export const withContext = propName => Component => props => ( | |
<Context.Consumer> | |
{value => ( | |
<Component | |
{...{[propName]: value}} | |
{...props} | |
/> | |
)} | |
</Context.Consumer> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment