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 11React Redux
22=========================
33
4- Official React bindings for [ Redux] ( https://github.com/reactjs/redux ) .
4+ Official React bindings for [ Redux] ( https://github.com/reactjs/redux ) .
55Performant and flexible.
66
77[ ![ 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
3737
3838## How Does It Work?
3939
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 ) .
4141Enjoy!
4242
4343## License
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ ReactDOM.render(
5353
5454Connects a React component to a Redux store.
5555
56- It does not modify the component class passed to it.
56+ It does not modify the component class passed to it.
5757Instead, it * returns* a new, connected component class, for you to use.
5858
5959#### Arguments
@@ -108,8 +108,8 @@ export default connect()(TodoApp)
108108
109109##### Inject ` dispatch ` and every field in the global state
110110
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
113113> listen to a relevant slice of the state.
114114
115115``` js
You can’t perform that action at this time.
0 commit comments