Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 375 Bytes
61d29fc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import { useEffect } from 'react'
import { useLocation } from 'react-router-dom'
/**
* ScrollToTop component that automatically scrolls to the top of the page
* when the route changes or the page is refreshed.
*/
export default function ScrollToTop() {
const { pathname } = useLocation()
useEffect(() => {
window.scrollTo(0, 0)
}, [pathname])
return null
}
|