JSFiddle - React, Tailwind, and code Playground
HTML
<div id = 'main_wrapper'></div>
CSS
html{
height: 100%;
width: 100%;
}
#main_wrapper{
height: 100%;
width: 100%;
background-color: blue;
}
JavaScript
$('#main_wrapper').on('resize', function(){
alert('derp');
})