JSFiddle - React, Tailwind, and code Playground

HTML

<p id="products">Hello</p>

JavaScript

$("#products").fadeOut(500)
    .delay(600)
    .queue(function(n) {
        $(this).html("hahahhaha");
        n();
    }).fadeIn(500);