five-tips-for-redux-in-large-application

Redux는 단방향 데이터 흐름과 immutable한 상태 유지를 통한 쉬운 상태 변화 추적을 할 수 있다.

각각의 상태 변화는 dispatch된 action에 의해서만 발생하고, reducer 함수는 적절하게 변화를 반영하느느 새로운 상태를 돌려준다.

Last updated

Was this helpful?