Q21. What is the difference between `mapStateToProps()` and `mapDispatchToProps()`?
`mapStateToProps()` is a utility which helps your component get updated state (which is updated by some other components): ```javascript const mapStateToProps = (state) =...