1.0.1 • Published 3 years ago

@hookplus/use-before-leave v1.0.1

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

@hookplus/use-before-leave

React Hook to execute a function when the mouse leaves the page. Useful to show a popup or for analytics.

Installation

yarn

yarn add @hookplus/use-before-leave

npm

npm i @hookplus/use-before-leave

Usage

import React from "react";
import useBeforeLeave from "@hookplus/use-before-leave";

function App() {
  const beforeLeave = () => console.log("User is leaving...");
  useBeforeLeave(beforeLeave);
  return <h1>Hello Hookplus</h1>;
}

Arguments

ArgumentTypeDescriptionRequired
onBeforeLeavefunctionFunction to be called when the mouse leaves the documentyes