Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active June 16, 2020 20:23
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/f058d61268354a540918b172f163e61f to your computer and use it in GitHub Desktop.
Save vanaf1979/f058d61268354a540918b172f163e61f to your computer and use it in GitHub Desktop.
import React, {useState, useEffect} from "react";
import axios from "axios";
const ComponentWithRequest = props => {
const [apiData, setApiData] = useState(null);
useEffect(() => {
axios.get("https://jsonplaceholder.typicode.com/todos").then(response => {
setApiData(response.data);
});
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