JSFiddle - React, Tailwind, and code Playground
HTML
<div>
</div>
CSS
div {
height:100px;
width:100px;
background:#000;
}
JavaScript
$(document).ready(function(){
$('div').click(function(){
$(this).css({background : "#fff"});
});
});