Created
April 8, 2019 13:46
-
-
Save andres-torres-marroquin/1a30b671c50f1e8e13a47baa5990a3f3 to your computer and use it in GitHub Desktop.
useBooleanState hook
This file contains 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
useBooleanState = (initialValue) -> | |
[value, setValue] = React.useState initialValue | |
setTrue = React.useCallback -> | |
setValue yes | |
, [] | |
setFalse = React.useCallback -> | |
setValue no | |
, [] | |
[value, setTrue, setFalse] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment