Why can this error be caused in my code?
componentDidMount(){
let container = document.getElementById('body');
container.onscroll = function () {
let height = this.clientHeight;
let scrollHeight = this.scrollHeight;
let scrollTop = this.scrollTop;
if (height + scrollTop === scrollHeight) {
this.setState({ display: 'loader'});
}
}
}