mirror of
https://github.com/streamich/react-use.git
synced 2026-01-25 14:17:16 +00:00
255 B
255 B
useBeforeUnload
React side-effect hook that shows browser alert when user try to reload or close the page.
Usage
import {useBeforeUnload} from 'react-use';
const Demo = () => {
useBeforeUnload('Are you sure?');
return null;
};