Skip to content

Instantly share code, notes, and snippets.

@4nte
Created May 26, 2018 19:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 4nte/3585047ef0719ffcdbfa138c9b7235ba to your computer and use it in GitHub Desktop.
Save 4nte/3585047ef0719ffcdbfa138c9b7235ba to your computer and use it in GitHub Desktop.
const { Provider, Consumer } = React.createContext("Scuba Manager");
render() {
return (
<Provider>
<Consumer>
{ (userRole) => <span>Role: {userRole}</span> }
</Consumer>
</Provider>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment