UNPKG
@hakuna-matata-ui/hooks
Version:
latest (1.7.2)
1.7.2
1.7.1
React hooks for Chakra components
github.com/monacohq/hakuna-matata-ui
monacohq/hakuna-matata-ui
@hakuna-matata-ui/hooks
/
src
/
use-unmount-effect.ts
10 lines
(8 loc)
•
225 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
*
as
React
from
"react"
export
function
useUnmountEffect
(
fn: () =>
void
, deps: any[] = []
) {
return
React
.
useEffect
(
() =>
() =>
fn
(),
// eslint-disable-next-line react-hooks/exhaustive-deps
deps, ) }