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
Try using
List = connect(
state => ({
values: getFormValues(state.form.formName)
})
)(List)
instead. At least that's how it worked in v5, although there the method was called getValues and not getFormValues.
Edit:
After a quick look at the docs it seems in v6 you'll have to use a formValueSelector: http://redux-form.com/6.0.0-rc.3/examples/selectingFormValues/