React Context Component
This is a React component that lets you add things in the context. Put simply, the context feature basically lets you to pass some data through all nodes in the components tree.
This component replaces the need to create many different "Providers", where each Provider does the same job.
For instance, instead of doing this:
<Provider store={store}> <GridProvider grid={grid}> <WidthProvider width={width}> // some components </WidthProvider> </GridProvider></Provider>
You can do this
import Context from 'react-context-component' <Context grid={grid} store={store} width={width}> // some components</Context>
Instalation
If you are using yarn:
yarn add react-context-component
If you are using npm: `npm i react-context-component