JSFiddle - React, Tailwind, and code Playground
CSS
body, html {
height: 1000px;
}
JavaScript
$(window).scroll(function () {
if ($(window).scrollTop() + $(window).height() == $(document).height()) {
alert('works');
}
});