Skip to content

Instantly share code, notes, and snippets.

@yeonwooz
Last active December 19, 2021 12:15
Show Gist options
  • Save yeonwooz/a1708a23e436c6ec1e4bf13741496a70 to your computer and use it in GitHub Desktop.
Save yeonwooz/a1708a23e436c6ec1e4bf13741496a70 to your computer and use it in GitHub Desktop.
useCallback
const isCheckingUser = useCallback(() => {
if (!isAvailable) return false
return isTryingToCheck
}, [isAvailable, isTryingToCheck])
const isChecked = useCallback(() => {
return status === 'registered'
}, [status])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment