JSFiddle - React, Tailwind, and code Playground

by jakie8

HTML

<div id="test">HELLO!</div>

CSS

#test{
    color:red;
    font-size:24px;
}

JavaScript

$('#test').click(function(){
    $(this).text('WIN!');
});