Skip to content

Commit 99530fa

Browse files
committed
Update README.md
1 parent a648443 commit 99530fa

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Performant and flexible.
1717
- [Quick Start](#quick-start)
1818
- [API](#api)
1919
- [`<Provider store>`](#provider-store)
20-
- [`connect([mapState], [mapDispatch], [mergeProps])(Component)`](#connectmapstate-mapdispatch-mergeprops-component)
20+
- [`connect([mapState], [mapDispatch], [mergeProps])(Component)`](#connectmapstate-mapdispatch-mergeprops)
2121
- [License](#license)
2222

2323
## React Native
@@ -212,7 +212,7 @@ React.render(
212212
);
213213
```
214214

215-
### `connect([mapState], [mapDispatch], [mergeProps])(Component)`
215+
### `connect([mapState], [mapDispatch], [mergeProps])`
216216

217217
Connects a React component to a Redux store.
218218

@@ -230,6 +230,8 @@ A React component class that injects state and action creators into your compone
230230

231231
#### Remarks
232232

233+
* It needs to be invoked two times. First time with its arguments described above, and second time, with the component: `connect(mapState, mapDispatch, mergeProps)(MyComponent)`.
234+
233235
* The `mapState` function takes a single argument of the entire Redux store’s state and returns an object to be passed as props. It is often called a **selector**. Use [reselect](https://github.com/faassen/reselect) to efficiently compose selectors and [compute derived data](http://gaearon.github.io/redux/docs/recipes/ComputingDerivedData.html).
234236

235237
* **To use `connect()`, the root component of your app must be wrapped into `<Provider>{() => ... }</Provider>` before being rendered.**

0 commit comments

Comments
 (0)