JSFiddle - React, Tailwind, and code Playground

by WoJWoJ

TypeScript

async function hello() {
	console.log('start')
  const a = await fetch('https://www.google.com')
  console.log('end')
  console.log(a.json())
}

hello()