@hookplus/use-before-leave

1.0.1 • Public • Published

@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

Argument Type Description Required
onBeforeLeave function Function to be called when the mouse leaves the document yes

/@hookplus/use-before-leave/

    Package Sidebar

    Install

    npm i @hookplus/use-before-leave

    Weekly Downloads

    2

    Version

    1.0.1

    License

    MIT

    Unpacked Size

    1.77 kB

    Total Files

    4

    Last publish

    Collaborators

    • yeongbba