in src/actions/customerActions.js [5:14]
export function loadCustomer(id) {
return function(dispatch) {
dispatch(loadCustomerRequest());
return customerApi.getCustomer(id).then(customer => {
dispatch(loadCustomerSuccess(customer));
}).catch(error => {
throw (error);
});
};
}