JSFiddle - React, Tailwind, and code Playground
HTML
<span class="first second">Text</span>
CSS
.first{ background-color:yellow; }
.second{ color:red; }
.third{ border:2px solid black; }
JavaScript
$('.first').click(function() {
$(this).addClass("third");
});