Guest User

Untitled

a guest
Oct 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. const handleScroll = ({ target }) => {
  2. if (target.scrollTop + target.clientHeight >= target.scrollHeight) {
  3. // loadMoreData();
  4. }
  5. };
  6.  
  7. element.addEventListener('scroll', handleScroll)
Add Comment
Please, Sign In to add comment