Skip to content

Instantly share code, notes, and snippets.

@simicd
Created August 16, 2020 18:40
Show Gist options
  • Save simicd/abedb98016d887e0800d63303fc5cb1c to your computer and use it in GitHub Desktop.
Save simicd/abedb98016d887e0800d63303fc5cb1c to your computer and use it in GitHub Desktop.
// DogImage.tsx
import React, { FC } from "react";
import { useFetch, DogImageType } from "./useFetch";
export const DogImage: FC = () => {
const data = useFetch({
url: "https://dog.ceo/api/breed/beagle/images/random",
processData: (data) => data as DogImageType,
});
return <>{data ? <img src={data.message} alt="dog"></img> : <div>Loading</div>}</>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment