From 9bca2764c58d44cd0202e0aec6965488f006eb5b Mon Sep 17 00:00:00 2001 From: Peter Uithoven Date: Wed, 5 Aug 2015 14:20:35 +0200 Subject: [PATCH] Basic provider explanation and link Also see: https://github.com/gaearon/redux/issues/397 --- examples/todomvc/containers/App.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/todomvc/containers/App.js b/examples/todomvc/containers/App.js index 49c8f93b43..d73310a49b 100644 --- a/examples/todomvc/containers/App.js +++ b/examples/todomvc/containers/App.js @@ -10,6 +10,8 @@ const store = createStore(reducer); export default class App extends Component { render() { return ( + // Provider makes our store instance available to the components below. Also see: + // http://gaearon.github.io/redux/docs/basics/UsageWithReact.html#connecting-to-redux {() => }