Skip to content

Instantly share code, notes, and snippets.

@DennyScott
Created March 7, 2020 08:41
Show Gist options
  • Save DennyScott/626115ec472d07399ea18c357c79673a to your computer and use it in GitHub Desktop.
Save DennyScott/626115ec472d07399ea18c357c79673a to your computer and use it in GitHub Desktop.
export function CatFacts({ id }) {
const data = useFetchCatFact(id);
return <div>Cat Fact: {data}</div>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment