Skip to content

Instantly share code, notes, and snippets.

@andycarrell
Last active February 23, 2018 03:01
Show Gist options
  • Select an option

  • Save andycarrell/9f248e8b2818de13a765d9c6e59d473b to your computer and use it in GitHub Desktop.

Select an option

Save andycarrell/9f248e8b2818de13a765d9c6e59d473b to your computer and use it in GitHub Desktop.
const AppContextConsumer = ({ children }) => (
<PermissionContext.Consumer>
{permissions => (
<ThemeContext.Consumer>
{theme => children({ permissions, theme })}
</ThemeContext.Consumer>
)}
</PermissionContext.Consumer>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment