File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
React Redux
2
2
=========================
3
3
4
- Official React bindings for [ Redux] ( https://github.com/reactjs/redux ) .
4
+ Official React bindings for [ Redux] ( https://github.com/reactjs/redux ) .
5
5
Performant and flexible.
6
6
7
7
[ ![ build status] ( https://img.shields.io/travis/reactjs/react-redux/master.svg?style=flat-square )] ( https://travis-ci.org/reactjs/react-redux ) [ ![ npm version] ( https://img.shields.io/npm/v/react-redux.svg?style=flat-square )] ( https://www.npmjs.com/package/react-redux )
@@ -37,7 +37,7 @@ If you are on an older version of React Native, you’ll need to keep using [Rea
37
37
38
38
## How Does It Work?
39
39
40
- We do a deep dive on how React Redux works in [ this readthesource episode] ( https://www.youtube.com/watch?v=VJ38wSFbM3A ) .
40
+ We do a deep dive on how React Redux works in [ this readthesource episode] ( https://www.youtube.com/watch?v=VJ38wSFbM3A ) .
41
41
Enjoy!
42
42
43
43
## License
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ ReactDOM.render(
53
53
54
54
Connects a React component to a Redux store.
55
55
56
- It does not modify the component class passed to it.
56
+ It does not modify the component class passed to it.
57
57
Instead, it * returns* a new, connected component class, for you to use.
58
58
59
59
#### Arguments
@@ -108,8 +108,8 @@ export default connect()(TodoApp)
108
108
109
109
##### Inject ` dispatch ` and every field in the global state
110
110
111
- > Don’t do this! It kills any performance optimizations because ` TodoApp ` will rerender after every action.
112
- > It’s better to have more granular ` connect() ` on several components in your view hierarchy that each only
111
+ > Don’t do this! It kills any performance optimizations because ` TodoApp ` will rerender after every action.
112
+ > It’s better to have more granular ` connect() ` on several components in your view hierarchy that each only
113
113
> listen to a relevant slice of the state.
114
114
115
115
``` js
You can’t perform that action at this time.
0 commit comments