JSFiddle - React, Tailwind, and code Playground
by Marc Chehab
HTML
<input onkeyup="update(this.value)" value="Schreibe etwas" />
<div class="output">
</div>
JavaScript
function update (text) {
document.getElementById("output").innerHTML = text
}