UNPKG

202 BJavaScriptView Raw
1import { useRef } from 'react';
2export function useInitialized(check) {
3 const initializedRef = useRef(check);
4 if (check) {
5 initializedRef.current = true;
6 }
7 return !!initializedRef.current;
8}
\No newline at end of file