Skip to content

Instantly share code, notes, and snippets.

@anthonyatp
Last active April 29, 2019 10:45
Show Gist options
  • Save anthonyatp/57d5be10fa7c0fd38c3e554d7a32c482 to your computer and use it in GitHub Desktop.
Save anthonyatp/57d5be10fa7c0fd38c3e554d7a32c482 to your computer and use it in GitHub Desktop.
if (data === undefined) {
const profileContent = (
<Profile>
<ProfileName><SkeletonLine /></ProfileName>
<ProfileBio><SkeletonLine /></ProfileBio>
</Profile>
);
} else {
const profileContent = (
<Profile>
<ProfileName>{username}</ProfileName>
<ProfileBio>{userBio}</ProfileBio>
</Profile>
);
}
return profileContent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment