Files
igny8/frontend/src/components/common/ScrollToTop.tsx
alorig f255e3c0a0 21
2025-11-24 06:08:27 +05:00

17 lines
296 B
TypeScript

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