Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

useWillUnmount.d.ts 187B

123456
  1. /**
  2. * Attach a callback that fires when a component unmounts
  3. *
  4. * @param fn Handler to run when the component unmounts
  5. */
  6. export default function useWillUnmount(fn: () => void): void;