행복을 담는 블로그
[React] Redux 설정하기 본문
Redux 설치하기
yarn add redux
yarn add react-redux
이렇게 두 개를 설치해야하는데, 둘 사이를 띄우고 설치하면 한 번에 가능하다!
yarn add redux react-redux
package.json에서 설치 완료 확인!
Redux 파일 설명
redux : 리덕스 관련 코드를 모두 몰아넣음
config : 리덕스 설정 관련 파일 전부
configStore : 중앙 state 관리소 -> 설정 코드(.js)
modules : state의 그룹! ex) Todolist. todo.js
export v.s. export default
- export로 내보내는 경우
: { 중괄호 } 필요
export store;
import { store } from "./redux/config/configStore";
- export default로 내보내는 경우
: { 중괄호 } 필요 X
export default store;
import store from "./redux/config/configStore";
'FrontEnd > React' 카테고리의 다른 글
[React] React Hooks - (1) useState (1) | 2024.01.30 |
---|---|
[React] Styled Components / GlobalStyles (0) | 2024.01.30 |
[React] Vite-React 사용하기 (0) | 2024.01.30 |
[React] 반복되는 컴포넌트 처리하기 / map( ), filter( ) (0) | 2024.01.23 |
[React] React에서 Styling 하기/ HTML, CSS, JSX (0) | 2024.01.22 |