JSFiddle - React, Tailwind, and code Playground

HTML

<div id="status"></div>

CSS

#status {
    font-size: 3em;
}

JavaScript

$('#status').html("Back in a second.");
var start = new Date().getTime();
for (; new Date().getTime() - start < 10000;) {}
$('#status').html("I'm back.");