JSFiddle - React, Tailwind, and code Playground
HTML
<body>
<div />
Blah
</body>
JavaScript
var p = document.createElement("p");
p.innerHTML = "<p>Test</p>";
document.body.insertBefore(p, document.body.firstChild);
iughiuh
<body>
<div />
Blah
</body>
var p = document.createElement("p");
p.innerHTML = "<p>Test</p>";
document.body.insertBefore(p, document.body.firstChild);
iughiuh