Created
September 7, 2020 12:34
-
-
Save jason-shen/e166e32607e9ba6599776e0c2a1a09d8 to your computer and use it in GitHub Desktop.
PROVA
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
useEffect(() => { | |
console.log(“ComponentDidUpdate” | |
}); | |
useEffect(() => { | |
console.log(“ComponentDidMount” | |
},[]); | |
useEffect(() => { | |
console.log(“will run when x changes” | |
},[x]); | |
useEffect(() => { | |
run init | |
return () => { | |
console.log(“ComponetWillUnmount”); | |
} | |
},[]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment