Redux Map Store по названию реквизита.
const mapStore = (state, ownProps) => { const name = ownProps.name; return { value: state.[name] //<= help here }; };
const mapStore = (state, ownProps) => { const name = ownProps.name; return { value: state.name //assuming state is an object with a key - name }; };
Я предполагаю, что ваша проблема в состоянии . после, это должно решить вашу проблему.
.
const mapStore = (state, ownProps) => { const name = ownProps.name; return { value: state[name] // No period after state }; };