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에게 전달!
'FrontEnd > React' 카테고리의 다른 글
[FrontEnd]미들웨어 Redux Thunk (0) | 2018.11.13 |
---|---|
[FrontEnd] 리덕스 준비 (0) | 2018.11.13 |
[FrontEnd] 백엔드 서버와 연결하기! (0) | 2018.11.10 |
[FrontEnd] Eject ,SASS, CSS Modules (0) | 2018.11.10 |
[FrontEnd]React! install!!!!!!!!(InstagramClone) (0) | 2018.11.10 |