import React from "react"; import { useLayoutEffect } from "react"; import { useLocation } from "react-router-dom"; const AutoScorllTop: React.FC<{ children: any }> = ({ children }) => { const location = useLocation(); useLayoutEffect(() => { document.documentElement.scrollTo(0, 0); }, [location.pathname]); return children; }; export default AutoScorllTop;