JSFiddle - React, Tailwind, and code Playground
HTML
<div style="background-color: red;"></div>
<p>Content below div</p>
JavaScript
$(document).ready(function() {
var height = $(window).height();
$('div').css('height', height + 'px');
});