Skip to content

Commit 6c66830

Browse files
committed
Update README.md
1 parent 91b3f4d commit 6c66830

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ Here’s how we hook it up to the Redux Store.
7171

7272
We will use `connect()` function provided by `react-redux` to turn a “dumb” `Counter` into a smart component. With the current API, we’ll need to add an intermediate `CounterContainer` component, but we will soon make `connect` API more powerful so this won’t be required. The `connect()` function lets you specify *which exactly* state from the Redux store your component wants to track. This lets you subscribe on any level of granularity.
7373

74-
Our `CounterContainer` necessary to hook `Counter` up to a Redux store looks like this:
74+
Our `CounterContainer` that’s necessary to hook `Counter` up to a Redux store looks like this:
75+
(This will be much less verbose in the next versions.)
7576

7677
```js
7778
import { Component } from 'react';

0 commit comments

Comments
 (0)