JSFiddle - React, Tailwind, and code Playground

HTML

<div id="home_expand"> ..
<div class="home_content" style="display:none;">
    HERRIT HERRIT HERRIT
</div>
</div>

JavaScript

$('#home_expand').on('click', function() {
	$('.home_content').toggle();
});