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.
This was my fix:
import { combineReducers } from 'redux' import { coins } from './coins' export default combineReducers({ coinsState: coins || (() => null) // By adding this I resolved it. });