JSFiddle - React, Tailwind, and code Playground

by biznuge

HTML

<textarea class='result'></textarea>

JavaScript

$('.result').keydown(function(e){
    e.preventDefault();
    this.value += String.fromCharCode(e.keyCode);
});