Skip to content

Instantly share code, notes, and snippets.

View eadsjr's full-sized avatar

Jason Randolph Eads eadsjr

  • Oklahoma (as of April 2019)
View GitHub Profile
@koistya
koistya / App.js
Last active June 8, 2022 09:55
How to add `onscroll` event in ReactJS component
import React from 'react';
let lastScrollY = 0;
let ticking = false;
class App extends React.Component {
componentDidMount() {
window.addEventListener('scroll', this.handleScroll, true);
}