turkmen-textile-front/src/hooks/use-scroll-top.ts

8 lines
172 B
TypeScript
Raw Normal View History

2025-01-29 08:40:38 +00:00
import { useEffect } from "react";
export const useScrollTop = (devs?: any) => {
useEffect(() => {
window.scrollTo({ behavior: "smooth", top: 0 });
}, [devs]);
};