본문 바로가기

FrontEnd/React

Redux 정의 및 인스톨


Without Redux


With Redux


npm install redux react-redux --save

Think of Redux as an object outside of all your components where you put the data and the functions that change that data. And when we want data we just connect the components to Redux.

리덕스를 쓰면, 상태 관리를 컴포넌트 바깥에서 한다!



1. 리덕스를 구독한다.




2. 액션을 취해 리덕스에 업데이트를 요청한다.



3. action을 받은 리덕스는 리듀서에 있는 function대로 일을 처리한다.



4. 그것을 구독한 G에게 전달!