JSFiddle - React, Tailwind, and code Playground

by harsh dand

HTML

<p>Harsh</p>

JavaScript

$(function(){
    $('p').click(function(){
        $(this).hide();
    })
});