JSFiddle - React, Tailwind, and code Playground
HTML
<textarea id="foo"></textarea>
JavaScript
function Composer(foobox) {
this.foobox = document.getElementById(foobox);
this.foobox.onkeydown = function(){window.alert("hello")};
}
var myComposer = new Composer("foo");