JSFiddle - React, Tailwind, and code Playground

HTML

<div class="js-show">
    <input type="Submit" value="Go!" />
</div>
<div class="js-hide">
    <p>Please switch JavaScript on.</p>
</div>

CSS

.js-show
{
    display: "none";
}

JavaScript

$(function() {
    $('.js-hide').hide();
    $('.js-show').show();
});