Slide 47
Slide 47 text
function
requestWithdrawal(account,
amount)
{
requestWithdrawal(account,
amount)
.done(
res
=>
dispatch({
type:
Actions.WITHDREW_FROM_ACCOUNT,
data:
{
...
}
}),
err
=>
dispatch({
type:
Actions.WITHDRAWAL_FAILED,
data:
{
...
}
});
);
}
If the request succeeds, we fire the action from earlier