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 {() => }