Skip to content

Commit 0ee0c4b

Browse files
author
Didier Franc
committed
v3.0.1
1 parent e461a38 commit 0ee0c4b

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed

README.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
yarn add react-waterfall
77
```
88

9-
Here is an example of the simplest implementation.
9+
Here is an example of a basic implementation.
1010

1111
```js
1212
import { initStore } from 'react-waterfall'
@@ -36,6 +36,21 @@ const App = () => (
3636
)
3737
```
3838

39+
You will find more examples [here](https://github.com/didierfranc/react-waterfall/tree/master/examples).
40+
41+
# Redux DevTools
42+
43+
If you want you can use Redux DevTools with `react-waterfall` thanks to [this middleware](https://github.com/elisherer/react-waterfall-redux-devtools-middleware).
44+
45+
```js
46+
import { initStore } from 'react-waterfall'
47+
import devtools from 'react-waterfall-redux-devtools-middleware'
48+
49+
const prod = process.env.NODE_ENV === 'production'
50+
51+
export const { Provider, connect } = initStore(store, prod && devtools())
52+
```
53+
3954
## Types
4055

4156
You can explore types [here](dist/react-waterfall.js.flow)
@@ -44,8 +59,6 @@ You can explore types [here](dist/react-waterfall.js.flow)
4459

4560
Advanced examples are available [here](https://github.com/didierfranc/react-waterfall-example)
4661

47-
![screenshot](screenshot.png)
48-
4962
## Links
5063

5164
* https://twitter.com/DidierFranc/status/965733433711489024

dist/react-waterfall.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-waterfall.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-waterfall",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"main": "dist/react-waterfall.js",
55
"author": "Didier Franc <[email protected]>",
66
"license": "MIT",

screenshot.png

-480 KB
Binary file not shown.

0 commit comments

Comments
 (0)