redux mapdispatchtoprops code example

Example 1: mapdispatchtoprops

const mapDispatchToProps = (dispatch) => {
  return {
    // dispatching plain actions
    increment: () => dispatch({ type: 'INCREMENT' }),
    decrement: () => dispatch({ type: 'DECREMENT' }),
    reset: () => dispatch({ type: 'RESET' }),
  }
}

⭐ Note: We recommend using the object form of 
mapDispatchToProps unless you specifically 
need to customize dispatching behavior in some way.

Example 2: redux typescript mapdispatchtoprops

const mapDispatchToProps = (dispatch: ThunkDispatch) => {
  ...

Example 3: redux connect

//Connects your component to Redux-store
export default connect(mapState, mapDispatch)(Component)

Tags:

Misc Example