JSFiddle - React, Tailwind, and code Playground

by Joe Saad

HTML

<div id="display"></div>

CSS

body{
  background: #fff;
  color: #000;
}

JavaScript

let counter = 1;
setInterval(function(){
	counter++;
	document.getElementById('display').innerHTML = counter;
}, 200)