JSFiddle - React, Tailwind, and code Playground

HTML

<div class="expandContent"><a href="#">Click Here to Display More Content</a></div>
<div class="showMe" style="display:none">This content was hidden, but now shows up</div>

JavaScript

$('.expandContent').click(function(){
    $('.showMe').show();
});