Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
322 Bytes
import { useEffect, useState } from 'react';
const useClickSameRoute = () => {
const [sameRoute, setSameRoute] = useState(false);
useEffect(() => window.scrollTo(0, 0), [sameRoute]);
const handleSameRoute = () => setSameRoute((prev) => !prev);
return handleSameRoute;
};
export default useClickSameRoute;