Javascript – react-redux-thunk why is my async action not working
The below code for an asynchronous action works does not work, i.e, the fetch works fine but the dispatch doesn't work. (Please see the output in the codesandbox link at the bottom.) function addUser(user) { return { type: FETCH, payload:…