asynch await axios react code example
Example: async axios call
async getUserAsync(name) {
try{
let response = await axios({
method: 'get',
url: `https://api.github.com/users/${name}`,
json: true
});
return response;
} catch(err){
console.error(err);
}
}