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