“No store found” when using Redux chrome extension

后端 未结 7 1076
轮回少年
轮回少年 2021-01-11 11:57

I have a problem with redux chrome extension.

I have the following code in my configureStore.js file :

import {createStore, applyMiddleware} from \'         


        
7条回答
  •  不知归路
    2021-01-11 12:18

    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)
    

提交回复
热议问题