JSFiddle - React, Tailwind, and code Playground
by Frank Liu
JavaScript
const func = async ()=>{
return await fetch('https://ip-geolocation.whoisxmlapi.com/api/v1?apiKey=at_pti1uOcGg7znt7T2G1D2eLwlc7zll')
.then(response => response.json())
.then(data => {return data});
}
const data = await func();
console.log(data);