JSFiddle - React, Tailwind, and code Playground

by Will Stott

HTML

<span id="hello">hello :)</span><div>hi</div>

JavaScript

const span = document.getElementById('hello');
setInterval(() => {
	span.innerText = "woah " + Date.now();
}, 10);