JSFiddle - React, Tailwind, and code Playground
by graphettion
HTML
<div id="app"></div>
JavaScript
const header = "Heading"
const paragraph = "I'm a byline"
const rawHtml = `
<section>
<header>
<h1>${header}</h1>
<p>${paragraph}</p>
</header>
<p>Content</p>
</section>
`
const content = document.querySelector("#app");
content.insertAdjacentHTML("beforeend", rawHtml);