JSFiddle - React, Tailwind, and code Playground
HTML
<ul>This is the unordered List
<li>List 1</li>
<li>List 2</li>
<li>List 3</li>
<li>List 4</li>
</ul>
CSS
li {display:none;}
JavaScript
$("ul").click(function() {
$("li").fadeIn();
$("ul").click(function() {
$("li").fadeOut();
});
});