Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active June 16, 2020 19:57
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 vanaf1979/b29182fa8a5e72bce4d31060895171e1 to your computer and use it in GitHub Desktop.
Save vanaf1979/b29182fa8a5e72bce4d31060895171e1 to your computer and use it in GitHub Desktop.
import React, {useEffect} from "react";
const ComponentWithRequest = props => {
useEffect(() => {
props.toggleMounted();
}, [props]);
return (
<div className="box">
<p>I will immediately get unmounted.</p>
</div>
);
};
export default ComponentWithRequest;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment