Skip to content

Instantly share code, notes, and snippets.

@DennyScott
Created March 7, 2020 08:49
Show Gist options
  • Save DennyScott/2f0335c3bf2a32ac4ba1565607402035 to your computer and use it in GitHub Desktop.
Save DennyScott/2f0335c3bf2a32ac4ba1565607402035 to your computer and use it in GitHub Desktop.
import { fetchData } from './utils';
export function CatFacts({ id }) {
const [data, setData] = useState();
useEffect(() => {
fetchData(id, setData)
}, [id, setData]);
return <div>Cat Fact: {data}</div>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment