store does not have a valid reducer. make........
❓ 오류 발생 상황과 이유
redux를 사용하여 초기값을 세팅하고 todo를 받아오는 input 과 그값을 저장하는 add 함수를 작성하고 난 후 실질적으로 사용하는 부분으로 넘어가서 세팅값을 연결하니 저런 에러 코드가 발생함
⭐해결방법
config/comfigStore.js 파일을 만들고 combineReducer 안에 값을 넣어줘야 하는데 combineReducer안에 아무 값을 입력을 안해줬다........
import { createStore } from "redux";
import { combineReducers } from "redux";
import todos from "../modules/todos";
const rootReducer = combineReducers({
todos,
});
const store = createStore(rootReducer);
export default store;
앞으론 정말 덜렁거리지 말고 제대로 꼭 제대로 코드좀 확인해서 저런 오류는 안나게 해야겠따....😭😭😭😭😭
'공부 > Error' 카테고리의 다른 글
onClick 이벤트 핸들러 2개 오류(setTimeout) (0) | 2023.07.07 |
---|---|
mac yarn 다운로드 오류 - errno: -13 (0) | 2023.07.03 |
error: failed to push some refs to .... 오류 (0) | 2023.06.24 |
error: Command failed with exit code 1 (0) | 2023.06.23 |
yarn 설치 오류 (2) | 2023.06.23 |