JSFiddle - React, Tailwind, and code Playground

by TimPietrusky

JavaScript

/* simple domLoaded */
function domLoaded() {
    if (document.readyState === 'complete') {   
        console.log("loaded");
    } else {
        setTimeout(function() {
            domLoaded();
        }, 25);
    }
}
domLoaded();