UNPKG

@hhgtech/hhg-components

Version:
12 lines (9 loc) 236 B
import { useState, useEffect } from 'react'; const useIsInit = () => { const [isInit, setIsInit] = useState(true); useEffect(() => { setIsInit(false); }, []); return isInit; }; export { useIsInit as u };