componentDidMount() {
this.props.fetchData();
window.addEventListener('scroll', this.handleScroll);
};
componentWillUnmount() {
window.removeEventListener('scroll', this.handleScroll);
};
handleScroll() {
this.props.fetchData()
};