Introduction
Installation
npm i redux-promise-middleware -sSetup
import promise from 'redux-promise-middleware'
composeStoreWithMiddleware = applyMiddleware(
promise,
)(createStore)Use
const foo = () => ({
type: 'FOO',
payload: new Promise()
});Further Reading
Last updated