/react-context-app

[ Learning ] React context

Primary LanguageJavaScript

React Context

[ Learning ] - React Context

  • React.createContext
const MyContext = React.createContext(defaultValue);
  • Context.Consumer
<MyContext.Consumer>
  {value => /* render something based on the context value */}
</MyContext.Consumer>
  • Context.Provider
<MyContext.Provider value={/* some value */}>