@saneksa/react-context-composer
v2.1.0
Published
[![NPM](https://img.shields.io/npm/v/@saneksa/react-context-composer?style=plastic&color=red)](https://npmjs.com/package/@saneksa/react-context-composer/) [![GitHub license](https://img.shields.io/npm/l/@saneksa/react-context-composer?style=plastic)](http
Downloads
21
Maintainers
Readme
Installation
yarn add @saneksa/react-context-composer
The Problem
In projects on react there are a lot of contexts, it becomes very difficult to read such things
<ContextA.Provider>
<ContextB.Provider>
<ContextC.Provider>...</ContextC.Provider>
</ContextB.Provider>
</ContextA.Provider>
Usage
See it in action at codesandbox
function App() {
return composeContexts([
[ThemeContext, theme[Theme.red]],
[LanguageContext, Languages.cn],
])(
<div>
<Children />
<br />
...child elements using contexts
</div>
);
}
In my proposed variant, the check of context value types works correctly