JSFiddle - React, Tailwind, and code Playground

HTML

<table id="mytable"><tr><td>TABLE</td></tr></table>

<a href="#" id="hidetable">View Data Show</a>

CSS

#table {display: none}

JavaScript

$(document).ready(function()
{
    $("#hidetable").click(function()
    {
        $("#mytable").show();
    });
});