Last active
June 18, 2020 23:53
-
-
Save toruticas/5e8ad7f3bdd8aa840e6f67f2d16e8e93 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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