JSFiddle - React, Tailwind, and code Playground

CSS

body {
    background-color: teal;
    height: 4000px;
}

JavaScript

document.addEventListener('scroll', function (event) {
    if (document.body.scrollHeight == 
        document.body.scrollTop +        
        window.innerHeight) {
        alert("Bottom!");
    }
});