handleAction1 Uncaught Invariant Violation: defaultState for reducer handling [object Object] should be defined Uncaught Invariant Violation: defaultState for reducer handling [object Object] should be defined 에러!! redux-actions로 리듀서를 작성하는 도중 발생 reducer를 여러개 사용할 경우 handleAction → handleActions로 변경하여 사용해야한다. // 수정 전 import { handleAction } from "redux-actions" const reducer = handleAction({ [INITIALIZE]: (state)=>initialState, },initailState) // 수정 후 import { handleActions } from "redux-actions" const redu.. 2022. 9. 26. 이전 1 다음