UNPKG

@restart/hooks

Version:

A set of utility and general-purpose React hooks.

8 lines (7 loc) 208 B
/** * Attach a callback that fires when a component unmounts * * @param fn Handler to run when the component unmounts * @category effects */ export default function useWillUnmount(fn: () => void): void;