import type { FC, PropsWithChildren } from 'react'; import { useEffect } from 'react'; import { useLocation } from 'react-router'; export const ScrollToTop: FC = ({ children }) => { const location = useLocation(); useEffect(() => { scrollTo(0, 0); }, [location]); return <>{children}; };