JSFiddle - React, Tailwind, and code Playground

by InviS

HTML

<div class='one'></div>

CSS

.one{width: 100px; height: 100px; background-color: grey;}

JavaScript

$('.one').bind('click',function(){
    alert(123);
});