JSFiddle - React, Tailwind, and code Playground

HTML

<div></div>

CSS

div {
    background:red;
    height:100px;
    width:150px;
}

JavaScript

$('div').click(function(){
    this.style.backgroundColor = this.style.backgroundColor == 'blue' ? 'red' : 'blue';
});