1.0.0 • Published 3 years ago

@ian_test_nooks/use-preventleave v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@ian_test_nooks/use-preventleave

React Hook to prevent Page before Leave

npm i @ian_test_nooks/use-preventleave

const { enablePrevent, disablePrevent } = usePreventLeave();

import usePreventLeave from "@ian_test_nooks/use-preventleave";

const App = () => {
  const { enablePrevent, disablePrevent } = usePreventLeave();
  return (
    <div className="App">
      <div>Hi</div>
      <button onClick={enablePrevent}>Protect</button>
      <button onClick={disablePrevent}>unProtect</button>
    </div>
  );
};