export const asyncApiCall = (values) => { return dispatch => { return axios.get(url) .then(response =>{ dispatch(successHandle(response)); }) .catch(error => { dispatch(errorHandle(error)); }); } }