useUnmount

Credit: Re-export from react-use

React lifecycle hook that calls a function when the component will unmount. Use useLifecycles if you need both a mount and unmount function.

Usage

import { useUnmount } from "@lynx-js/react-use";

const Demo = () => {
  useUnmount(() => {
    console.log("UNMOUNTED");
  });
  return null;
};

Type Declarations

declare const useUnmount: (fn: () => any) => void;