Understanding reselect and re-reselect
TL; DR If you’re pretty comfortable with what Redux selection is and how it works, remember these tips: Keep simple selectors simple For simple use cases where we want to do a straight property lookup, all we need to do in mapStateToProps is drill down to the property we need. For example: const mapStateToProps = […]