JSFiddle - React, Tailwind, and code Playground

by Sunny SM

HTML

<div id="firstTab" class="first-tab">
eqweqweqweqweqw
</div>

JavaScript

const simpleAlert = function() {
console.log('SDSD')
   document.getElementById("firstTab").style.color= "green";
};

(function() {
	simpleAlert();
	setTimeout(function () {
  console.log('XX')
     document.getElementById("firstTab").style.color= "red";
  }, 200000);
})();