Created
October 14, 2019 03:59
-
-
Save enjoylife/d1bc5c05d7200433ac2045b65e6dad07 to your computer and use it in GitHub Desktop.
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
const useForceRender = () => { | |
const [, forceRender] = useReducer((oldVal) => oldVal + 1, 0) | |
return forceRender | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment