I have a problem with redux chrome extension.
I have the following code in my configureStore.js file :
import {createStore, applyMiddleware} from \'
I am late but may help someone, my solution was to use connect the component
import {connect} from 'react-redux' ... class MyComponent extends Cmponent{ ... } export default connect()(MyComponent)