JSFiddle - React, Tailwind, and code Playground
by vzytoi
HTML
<div class="test"></div>
CSS
.test {
width: 100px;
height: 100px;
background: #000;
}
JavaScript
const test = document.querySelector('.test');
test.addEventListener('click', function(e) {
e.style.background = "red";
});