David Lakata

Results 2 comments of David Lakata

Perhaps something like this: ```javascript const mapStateToProps = (state) => { return { options: state.options, data: state.selectedData }; }; const mapDispatchToProps = (dispatch) => { return { fetchData: (id) =>...

I might be wrong, but I don't think you can/should modify data in the `reduxAsyncConnect` key in the redux store, since it's managed by redux-connect's reducer. You should only read...