18 lines
368 B
TypeScript
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;
|
|
}
|