window.scrollto (0 0) tidak berfungsi

const scrollToTop = () => {
  document.getElementById("scroller").scroll(0,0)
}

<button onClick={scrollToTop}>Scroll to Top</button>
Horrible Hamerkop