JSFiddle - React, Tailwind, and code Playground

HTML

<div class="whatever" style="display:none"></div>

CSS

.whatever {
    background:red; 
    height: 50px;
}

JavaScript

$(".whatever").slideDown().promise()
.done(function() {
  this.slideUp();
})
.done(function() {
  this
    .css("background", "lightgreen")
    .text("hello!");
})