redux-chain-middleware
v1.0.0
Published
redux middleware which allows dispatching promise action creators sequentially
Downloads
6
Maintainers
Readme
redux-chain-middleware
redux middleware which allows dispatching promise action creators sequentially
Usage
sequentially
dispatch([
a(),
b(),
c()
])
concurrently
dispatch(a())
dispatch(b())
dispatch(c())