UNPKG

antd-mobile

Version:

<img src="https://gw.alipayobjects.com/mdn/rms_ee68a8/afts/img/A*hjjDS5Yy-ooAAAAAAAAAAAAAARQnAQ" alt="logo" width="100%" />

10 lines (8 loc) 204 B
import { useRef } from 'react'; export function useInitialized(check) { const initializedRef = useRef(check); if (check) { initializedRef.current = true; } return !!initializedRef.current; }