reselect - arthur791004/notes GitHub Wiki
Repository
https://github.com/reactjs/reselect
Props
- reselect memoizes ("caches") previous state trees and calculations based on said tree. This means repeated changes and calculations are fast and efficient, providing us with a performance boost over standard
mapStateToProps
implementations.