I want to covert my code to scroll with animation. A lot of solutions I looked up were functions that had to provide element, etc. I already know exactly the amount I need to scroll down. I just need to animate it.
reactScrollTo(nextPos){
let elem = document.getElementById('ref-'+nextPos);
let amount = elem.offsetTop+530
window.scrollTo(0, amount);
}