JSFiddle - React, Tailwind, and code Playground

HTML

<div id='block'></div>

CSS

#block{width:100px; height:100px;background:#aaa;}

JavaScript

$('#block').css({
    background: "-webkit-gradient(linear, left bottom, left bottom, from(#ccc), to(#000))" 
});