Created
December 25, 2018 12:41
-
-
Save nirsky/cd5b8d2cd5570fa88668ce8be3de4c2b to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Counter = props => { | |
const [count, setCount] = useState(0); | |
const prevCountRef = useRef(); | |
useEffect(() => { | |
prevCountRef.current = count; | |
}); | |
const prevCount = prevCountRef.current; | |
return <h1>Now: {count}, before: {prevCount}</h1>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment