Reputation:
hi I am getting an error about redux-toolkit.I don't know why it is showing me error and I have uploaded
full error: Store does not have a valid reducer. Make sure the argument passed to combineReducers is an object whose values are reducers.
Upvotes: 0
Views: 1129
Reputation: 130
you could try this
const reducer = combineReducers({
auth: authReducer,
users: userReduce
});
https://redux.js.org/api/combinereducers
Upvotes: 1