JSFiddle - React, Tailwind, and code Playground

by denisz

HTML

<button>
  click me
</button>

JavaScript

function sayHello() {
  console.log('hello');
	window.requestAnimationFrame(sayHello);
}
sayHello();