react-waterfall
Version:
React store built on top of [the new context API](https://reactjs.org/docs/context.html)
47 lines (33 loc) • 1.1 kB
Markdown
on top of [the new context API](https://reactjs.org/docs/context.html)
**store.js**
```js
import createStore from 'react-waterfall'
const config = {
initialState: { count: 0 },
actionsCreators: {
increment: ({ count }) => ({ count: count + 1 }),
},
}
export const { Provider, connect, actions } = createStore(config)
```
**App.js**
```js
import { connect, Provider, actions } from './store'
let Count = ({ count }) => count
Count = connect(({ count }) => ({ count }))(Count)
const App = () => (
<Provider>
<Count />
<button onClick={actions.increment}>+</button>
</Provider>
)
```
During development `redux-devtools` are automatically enabled. Install the [extension](https://chrome.google.com/webstore/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd).
https://github.com/didierfranc/react-waterfall/graphs/contributors
* https://twitter.com/DidierFranc/status/965733433711489024
* https://medium.com/@DidierFranc/replacing-redux-with-the-new-react-context-api-8f5d01a00e8c
React store built