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 */}>