Created
September 30, 2024 17:52
-
-
Save sturmenta/993fa19f72103e77fc7161ca0ff1c7de to your computer and use it in GitHub Desktop.
Revisions
-
sturmenta created this gist
Sep 30, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ import { useEffect, useRef } from 'react'; export const useOnlyCallOnce = (cb, condition = true) => { const isCalledRef = useRef(false); useEffect(() => { if (condition && !isCalledRef.current) { isCalledRef.current = true; cb(); } }, [cb, condition]); };