in src/actions/productActions.js [72:81]
export function loadProductCustomers(id) {
return function(dispatch) {
dispatch(loadProductCustomersRequest());
return productApi.getProductCustomers(id).then(productCustomers => {
dispatch(loadProductCustomersSuccess(productCustomers));
}).catch(error => {
throw (error);
});
};
}