Last active
August 19, 2020 07:26
-
-
Save kt3k/ef40a1168443c8d877aa3509532f7e17 to your computer and use it in GitHub Desktop.
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 characters
import { useEffect } from 'react' | |
export const useEffectFor = (cond: unknown, cb: () => unknown): void => { | |
useEffect(() => { | |
if (cond) { | |
cb() | |
} | |
}, [cond]) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment