This repository was archived by the owner on Jan 22, 2020. It is now read-only.

Description
Redux recommends that you wrap your Router with a Provider from react-redux which passes the store to all child components via React's context. Container components then find this store and pull state off of it. The router setup looks like this:
<Provider store={store}>
<Router history={browserHistory}>
<Route path='/' component={IndexContainer}>
</Router>
</Provider>
However, react-engine builds a RouterContext based on the matched params from react-router. This does not pass any available context to the children component, making the recommended use case of Redux with React blow up.