export default function callApi2(endpoint, method = 'GET', body) {
let headers = { 'content-type': 'application/json' }
console.log(body);
return axios({
method: method,
url: `${Config.API_URL2}/${endpoint}`,
data: JSON.stringify(body),
headers: { 'content-type': 'application/json' },
}).catch(err => {
console.log(err);
});