React-Redux - No reducer provided for key “coins”

后端 未结 4 1252
天命终不由人
天命终不由人 2020-12-30 19:05

Not sure why I\'m getting the following errors.

I\'m just setting up my store, actions and reducers, I haven\'t called dispatch on anything yet.

Expected

4条回答
  •  死守一世寂寞
    2020-12-30 19:24

    Ah just found it, I was importing my coins reducer incorrectly...

    import { combineReducers } from 'redux'
    import coins from './coins' // because I have coins/index.js
    
    export default combineReducers({
        coins
    });
    

    instead of

    import { coins } from './coins'
    

提交回复
热议问题