Redux store does not have a valid reducer
问题 Haven't been able to find anything around here regarding this error: "Store does not have a valid reducer. Make sure the argument passed to combineReducers is an object whose values are reducers." My reducer export default function FriendListReducer(state = {friends : []}, action) { switch (action.type) { case 'ADD_FRIEND': return [ { friends : action.payload.friend }, ...state.friends ] default: return state; } return state; } Combiner import { combineReducers } from 'redux'; import {