행복을 담는 블로그

[React] Redux 설정하기 본문

FrontEnd/React

[React] Redux 설정하기

hyun0zin 2024. 1. 30. 11:34

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

  1. export로 내보내는 경우
    : { 중괄호 } 필요
export store;

import { store } from "./redux/config/configStore";
  1. export default로 내보내는 경우
    : { 중괄호 } 필요 X
export default store;

import store from "./redux/config/configStore";