mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
240 B
240 B
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;
};