JSFiddle - React, Tailwind, and code Playground

by each

HTML

<div></div>

JavaScript

$(function() {
    
   var hey = 'whats up';
   
    $('div').click(function() {
       
        hey = 'how are you';
       
    }); 
    
});