I am using redux-form 6.0.0-rc.5 and I am trying to display the form values as they are entered by the user.
However, I want these values to be displayed from anothe
formValueSelector() is not necessary.
You also can directly access it as a property.
List = connect( state => ({ formValues: { id: state.form.formName.values.id } }) )(List)
Same as
List = connect( state => ({ formValues: { id: formValueSelector('formName')(state, 'id') } }) )(List)