I want to stop rendering during scrolling - add e.preventDefault().
please tell me how to do it right.
scroll I get automatically from the library and there is no props -onScroll
useEffect(() => {
let scrollEvent = document.getElementsByClassName('ScrollbarLayout_faceVertical')[0];
console.log(scrollEvent);
scrollEvent.addEventListener('', function (event) {
return event.preventDefault();
});
}, []);