JSFiddle - React, Tailwind, and code Playground

HTML

<div id="coucou" class="test">test</div>

CSS

.test {
  background:red;
}

JavaScript

var test = document.getElementById('coucou');
test.style.background = 'blue';