JSFiddle - React, Tailwind, and code Playground

HTML

<div id="timestamp"></div>

JavaScript

setInterval(function() {
    document.getElementById("timestamp").innerHTML = Date.now();
}, 16);