JSFiddle - React, Tailwind, and code Playground
HTML
<div id="clickme"> Click me </div>
CSS
div{ background:#00CC00; display:inline-block; margin:20px; border-radius:5px; padding:20px;cursor:pointer;}.red{background:#cc0000}
JavaScript
$('#clickme').click(function(){
$(this).toggleClass('red');
})