JSFiddle - React, Tailwind, and code Playground
by evgkch
HTML
<div id="app">
</div>
JavaScript
const app = document.getElementById('app');
const div = document.createElement('div');
div.innerHTML = '<strong>Test</strong>';
app.appendChild(div)