Replies: 1 comment
-
This is always an indicator that there's something wrong with your build or bundling setup, or your import statements. Please check how you're loading the Redux library and importing it. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I ran into this problem and can't find a solution.
code:
code:
import { combineReducers } from "redux";import reducerOne from "./reducerOne";
import reducerTwo from "./reducerTwo";
const rootReducer = combineReducers({
reducerOne: reducerOne,
reducerTwo: reducerTwo,
});
export default rootReducer;
Beta Was this translation helpful? Give feedback.
All reactions