added scrolltop

This commit is contained in:
sanjidaRimi023
2026-05-06 20:30:34 +06:00
parent 16ba6b2d99
commit 4a61e841ae
+16
View File
@@ -0,0 +1,16 @@
import { useEffect } from "react";
import { useLocation } from "react-router-dom";
export default function ScrollToTop() {
const { pathname } = useLocation();
useEffect(() => {
window.scrollTo({
top: 0,
left: 0,
behavior: "instant",
});
}, [pathname]);
return null;
}