JSFiddle - React, Tailwind, and code Playground

JavaScript

// This works in FF, but not Chrome or Safari
setTimeout(window.location.reload, 2000);
// Comment it out to stop the browser refreshing forever

// This works everywhere

setTimeout((function() {
  window.location.reload();
}), 250);


/* So does this
var say_hello = function () { alert("hello") };  
setTimeout(say_hello, 250); 
*/