Uecko_ERP/packages/rdx-ui/src/components/scroll-to-top.tsx

18 lines
368 B
TypeScript
Raw Normal View History

2025-05-18 11:53:00 +00:00
import { useEffect } from "react";
import { useLocation } from "react-router";
export function ScrollToTop() {
const { pathname } = useLocation();
// biome-ignore lint/correctness/useExhaustiveDependencies: <explanation>
useEffect(() => {
window.scrollTo({
top: 0,
left: 0,
behavior: "smooth",
});
}, [pathname]);
return null;
}