JSFiddle - React, Tailwind, and code Playground

by Ivin Raj S

HTML

<h1>This is the first file</h1>

JavaScript

$(document).ready(function(){
         $('h1').click(function(){
             $(this).css("color",'red');
        });
        });