JSFiddle - React, Tailwind, and code Playground
by Chris Rebert
HTML
<div id="test">Test</div>
CSS
.green {
background-color: lime;
}
#test {
height: 150px;
width: 150px;
}
JavaScript
document.getElementById('test').classList.add('abc', 'green')