JSFiddle - React, Tailwind, and code Playground
HTML
<body>
</body>
JavaScript
var infoDiv = document.createElement("div");
infoDiv.setAttribute("class", "text-block");
var bio = document.createElement("strong");
bio.textContent = "Bio";
infoDiv.appendChild(bio);
infoDiv.innerHTML += "Full";
document.getElementsByTagName("body")[0].appendChild(infoDiv)