Uecko_ERP/packages/rdx-ui/src/components/scroll-to-top.tsx
2025-05-18 13:53:00 +02:00

18 lines
368 B
TypeScript

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;
}