JSFiddle - React, Tailwind, and code Playground

HTML

<button id="show">
       Show more/less</button>
    <div id="content">
    <p>Blah blah blah</p>
    </div>

JavaScript

$( document ).ready(function() {
    $( "#show" ).click(function() {
      $( "#content" ).fadeToggle( "slow" );
       
      });
    });