lelandrichardson / redux-pack

Sensible promise handling and middleware for redux
MIT License
1.33k stars 60 forks source link

Please add documentation regarding the ability to chain actions that return promises #77

Open trackingallday opened 4 years ago

trackingallday commented 4 years ago

We are using a very handy feature in our code using async actions that need to happen in order like this:

props.getItem(props.itemsUri).then( ({ payload }) => props.loadCreateItemRelationForm(payload.relatedItemFormUri));

Could you please add to the docs that this is a feature?