Skip to content

Instantly share code, notes, and snippets.

@olecksamdr
Last active December 3, 2018 17:03
Show Gist options
  • Save olecksamdr/9f7ed96353e70cbcd7592e7245aa5d54 to your computer and use it in GitHub Desktop.
Save olecksamdr/9f7ed96353e70cbcd7592e7245aa5d54 to your computer and use it in GitHub Desktop.
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