JSFiddle - React, Tailwind, and code Playground

by speakman

HTML

<div id="content">
     <h1>Rubrik</h1>

</div>

JavaScript

setInterval(function () {
    $("#content").append("<p>Text</p>");
    console.log("And some log text...");
}, 1000);