JSFiddle - React, Tailwind, and code Playground

by slash197

HTML

<div>
</div>

CSS

div {
    width: 500px;
    height: 500px;
    background-color: #ff0000;
}

JavaScript

$('div').click(function(){ alert(1); });
$('div').keypress(function(e){ alert(e.keyCode); });