JSFiddle - React, Tailwind, and code Playground
HTML
<div id="editor" contenteditable>text here</div>
<div id="console"></div>
JavaScript
var input = document.getElementById('editor');
input.onkeyup = function() {
document.getElementById('console').innerHTML = input.text;
}