Created
February 2, 2020 09:43
-
-
Save simbathesailor/69a213b525b51c06959647a740fc71f2 to your computer and use it in GitHub Desktop.
useisMountedStateway.jsx
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
function App() { | |
// const isMounted = useIsMounted() | |
const isMounted = useIsMounted(); | |
React.useEffect(() => { | |
if (isMounted) { | |
console.log("i am mounted"); | |
} | |
}, [isMounted]); | |
React.useEffect(() => { | |
console.log("parent"); | |
}, []); | |
console.log("isMounted", isMounted); | |
return ( | |
<div> | |
<Child /> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment