Files
igny8/frontend/src/components/common/ScrollToTop.tsx
2025-11-09 10:27:02 +00:00

17 lines
292 B
TypeScript

import { useEffect } from "react";
import { useLocation } from "react-router";
export function ScrollToTop() {
const { pathname } = useLocation();
useEffect(() => {
window.scrollTo({
top: 0,
left: 0,
behavior: "smooth",
});
}, [pathname]);
return null;
}