JSFiddle - React, Tailwind, and code Playground
HTML
<div id="first"></div>
<div id="second"></div>
CSS
div { height: 100px; line-height: 100px; margin: 10px; }
#first { background: #facade; }
#second { background: #bada55; }
JavaScript
var text = "Dette kommer at være dit";
document.getElementById('first').innerHTML = text;
document.getElementById('second').innerText = text;