UNPKG
react-stateful-function
Version:
latest (0.1.6)
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.2
0.0.1
React Statful Function
github.com/Yasser-G/React-Stateful-Function
Yasser-G/React-Stateful-Function
react-stateful-function
/
src
/
useWillUnmount.js
9 lines
(6 loc)
•
223 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{ useEffect }
from
'react'
;
/** * ComponentWillUnmount replacement */
const
useWillUnmount
= (
doBeforeUnmount = () =>
null
) =>
useEffect
(
() =>
{
return
() =>
doBeforeUnmount
(); }, []);
export
{ useWillUnmount };