React
react-redux
redux공식 사이트 https://redux.js.org/introduction/getting-started/ Getting Started with Redux | Redux Introduction > Getting Started: Resources to get started learning and using Redux redux.js.org Rdux를 쓰는 이유 1. props를 전달, 전달, 전달해야 하는 문제를 해결 할 수 있다. react앱을 작성하다보면 props를 전달, 전달, 전달해야 하는 경우가 생긴다. 리덕스를 사용하면 이 문제를 해결할 수 있다. A -> B -> C로 전달하던 값을 A -> C로 한번에 전달 가능한 것이다. 2. 코드가 강하게 coupling되어있는 경우 decoupl..