score:17

Accepted answer

this github issue covers this exact problem: https://github.com/reactjs/react-redux/issues/60.

you can manually extract the values you want from your map in your mapstatetoprops function:

const mapstatetoprops = (state) => {
  return {
       constraints: state.get('constraints'),
       selectedamount: state.get('selectedamount'),
       selectedterm: state.get('selectedterm'),
  };
}

Related Query

More Query from same tag