JSFiddle - React, Tailwind, and code Playground

by tobek

HTML

<div></div>

CSS

div {
    width: 50px;
    height: 50px;
    background-color: red;
}

JavaScript

$(function() {
    $("div").fadeOut(1000);
}