Last active
May 21, 2019 06:20
-
-
Save franky47/14f26d6af6704d6246fe28d77af32506 to your computer and use it in GitHub Desktop.
React useDerivedState 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
import React from 'react' | |
const useDerivedState = <T>(derive: () => T, deps: any[]): T => { | |
const [value, setValue] = React.useState<T>(derive) | |
React.useEffect(() => { | |
setValue(derive()) | |
}, deps) | |
return value | |
} | |
export default useDerivedState |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Usage: