JSFiddle - React, Tailwind, and code Playground
HTML
<div id="test"></div>
CSS
#test{
background:red;
width:100px;
height:100px;
}
JavaScript
$('#test').css('border-radius', '10px')
$('body').append($('#test').css('border-radius'))