Scroll to top in react js code example
Example 1: scroll to top in react
componentDidMount() {
window.scrollTo(0, 0)
}
Example 2: scroll to top in react
useEffect(() => {
window.scrollTo(0, 0)
}, [])
Example 3: react scroll to top
const scrollTop = () =>{ window.scrollTo({top: 0, behavior: 'smooth'});};
Example 4: how to make page scroll to the top jsx
componentDidMount() {
window.scrollTo(0, 0)
}