Skip to content

Instantly share code, notes, and snippets.

@kt3k
Last active August 19, 2020 07:26
Show Gist options
  • Save kt3k/ef40a1168443c8d877aa3509532f7e17 to your computer and use it in GitHub Desktop.
Save kt3k/ef40a1168443c8d877aa3509532f7e17 to your computer and use it in GitHub Desktop.
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