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

后端 未结 4 1250
天命终不由人
天命终不由人 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:36

    This was my fix:

    import { combineReducers } from 'redux'
    import { coins } from './coins'
    
    export default combineReducers({
        coinsState: coins || (() => null) // By adding this I resolved it.
    });
    

提交回复
热议问题