UNPKG

adui

Version:

<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>

14 lines (10 loc) 212 B
import { useRef, useEffect } from "react" export function useIsMounted() { const mounted = useRef(true) useEffect(() => { return () => { mounted.current = false } }, []) return mounted }