Advogados/Template-02/src/components/ScrollToTop.tsx

17 lines
297 B
TypeScript
Raw Normal View History

2026-05-13 22:14:22 +00:00
import { useEffect } from 'react';
import { useLocation } from 'react-router-dom';
export function ScrollToTop() {
const { pathname } = useLocation();
useEffect(() => {
window.scrollTo({
top: 0,
left: 0,
behavior: 'instant',
});
}, [pathname]);
return null;
}