Skip to content

Instantly share code, notes, and snippets.

@toruticas
Last active June 18, 2020 23:53
Show Gist options
  • Save toruticas/5e8ad7f3bdd8aa840e6f67f2d16e8e93 to your computer and use it in GitHub Desktop.
Save toruticas/5e8ad7f3bdd8aa840e6f67f2d16e8e93 to your computer and use it in GitHub Desktop.
const ProfileData: FC = () => {
const { data, error, isValidating, mutate } = useSWR(GITHUB_PROFILE_API)
return (
<div className="ProfileData">
...
{error && (
<div className="spinner">
<AlertIcon />
</div>
)}
...
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment