async function getData(){
let returnData = null
await fetch('https://www.wikipedia.org/')
.then(response => response.json())
.then(data => {
returnData = data
})
return returnData
}
function Home() {
let data = getData()
console.log(data)
}
Editor is loading...