JSFiddle - React, Tailwind, and code Playground
HTML
<div>
Some text in a div.
<script>
var div = document.createElement('div'),
script = document.scripts[document.scripts.length - 1];
div.innerHTML = 'Hello';
script.parentElement.insertBefore(div, script);
</script>
More text in a div.
</div>