JSFiddle - React, Tailwind, and code Playground

HTML

Toggle me! <a href="#" id="contactToggle">Toggle here</a>
<div id="contactToggleDiv" class="productToggle">
    <div class="content">
        CONTENT!!
    </div>
</div>

CSS

.productToggle {
    display:none;
}

JavaScript

jQuery('#contactToggle').click(function () {
    jQuery('#contactToggleDiv').slideToggle('slow');
    return false;
});