Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified

usePageLeave

React sensor hook that fires a callback when mouse leaves the page.

Usage

import {usePageLeave} from 'react-use';

const Demo = () => {
  usePageLeave(() => console.log('Page left...'));

  return null;
};