Skip to content

Commit

Permalink
Update UsageWithReact.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Oct 10, 2015
1 parent d6375d0 commit e1242f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/basics/UsageWithReact.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ React.render(
);
```

This makes our store instance available to the components below. (Internally, this is done via React's ["context" feature](http://facebook.github.io/react/docs/context.html).)
This makes our store instance available to the components below. (Internally, this is done via Reacts [context feature](http://facebook.github.io/react/docs/context.html).)

Then, we **wrap the components we want to connect to Redux with the `connect()` function from [`react-redux`](http://github.com/gaearon/react-redux)**. Try to only do this for a top-level component, or route handlers. While technically you can `connect()` any component in your app to Redux store, avoid doing this too deeply, because it will make the data flow harder to trace.

Expand Down

0 comments on commit e1242f8

Please sign in to comment.