JSFiddle - React, Tailwind, and code Playground

by brennan

HTML

<h1>we have INDIGO as a paying client</h1>

CSS

html{
    background-color:#00ff00;
}
h1{
    margin:100px;
    text-align:center;
    color:#ff0000;
}

JavaScript

setInterval(function(){
    $('h1').toggle();
}, 700)