JSFiddle - React, Tailwind, and code Playground
by denisz
HTML
<button>
click me
</button>
JavaScript
function sayHello() {
console.log('hello');
window.requestAnimationFrame(sayHello);
}
sayHello();
by denisz
<button>
click me
</button>
function sayHello() {
console.log('hello');
window.requestAnimationFrame(sayHello);
}
sayHello();