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.
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'