Skip to content

Instantly share code, notes, and snippets.

@simbathesailor
Created February 2, 2020 09:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simbathesailor/69a213b525b51c06959647a740fc71f2 to your computer and use it in GitHub Desktop.
Save simbathesailor/69a213b525b51c06959647a740fc71f2 to your computer and use it in GitHub Desktop.
useisMountedStateway.jsx
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