mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-01 21:31:36 +02:00
14 lines
235 B
JavaScript
14 lines
235 B
JavaScript
import { useEffect, useRef } from 'react'
|
|
|
|
export default function useIsMounted() {
|
|
const isMounted = useRef(true)
|
|
|
|
useEffect(() => {
|
|
return () => {
|
|
isMounted.current = false
|
|
}
|
|
}, [isMounted])
|
|
|
|
return isMounted
|
|
}
|