mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01:00
17 lines
412 B
JavaScript
Vendored
17 lines
412 B
JavaScript
Vendored
import useUpdatedRef from './useUpdatedRef';
|
|
import { useEffect } from 'react';
|
|
/**
|
|
* 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) {
|
|
var onUnmount = useUpdatedRef(fn);
|
|
useEffect(function () {
|
|
return function () {
|
|
return onUnmount.current();
|
|
};
|
|
}, []);
|
|
} |