Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ A React component class that injects state and action creators into your compone
export default connect()(TodoApp);
```

##### Inject `dispatch` and every field in the global state (SLOW!)
##### Inject `dispatch` and every field in the global state (SLOW! TodoApp will rerender after each action)
```js
export default connect(state => state)(TodoApp);
```
Expand Down