Redux 설정 시 store.js에서 리듀서 추가 누락 오류React 프로젝트에서 Redux를 설정할 때, store.js 파일에 combineReducers로 리듀서를 추가하지 않으면 다음과 같은 오류가 발생한다. 이 오류는 React의 useContext 훅을 사용하는 과정에서 발생한다.오류 메시지:Cannot read properties of null (reading 'useContext') && react.development.js:209 Warning: Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reaso..