class TripHistory extends Component {
scrollHandler = throttle((e) => {
console.log(e);
}, 300);
}
class TripHistory extends Component {
constructor(){
super(props);
this.scrollHandler = throttle(this.scrollHandler,300)
}
scrollHandler = (e) => {
console.log(e);
}
}