digitalfabrik/integreat-app

View on GitHub
web/src/hooks/useScrollToTopOnMount.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { useEffect } from 'react'

const useScrollToTopOnMount = (): void => {
  useEffect(() => {
    window.scrollTo(0, 0)
  }, [])
}

export default useScrollToTopOnMount