JSFiddle - React, Tailwind, and code Playground
by George Batt
HTML
<div class="selector">Div</div>
CSS
div{height:50px; width:50px; background:#55F}
JavaScript
AnimateIt("height",100);
function AnimateIt(animate_property, val)
{
animObj = {};
animObj[animate_property] = val;
$(".selector").animate(animObj ,500);
}