React의 useContext를 활용해도 전역 상태관리가 어느정도는 가능하다.하지만 프로젝트의 크기가 커질수록 useContext의 부족한 점이 드러나 우리는 라이브러리에서 제공해주는 전역상태관리를 사용하고자 한다.처음으로 redux를 사용해볼 것이다. 1. redux 설치yarn add redux react-redux 2. 폴더 및 파일 생성 3. configStore 작성import { combineReducers, createStore } from "redux";//1) rootReducer 만들기const rootReducer = combineReducers({});//2) store 조합const store = createStore(rootReducer);//3) store 내보내기export..