Last active
April 29, 2019 10:45
-
-
Save anthonyatp/57d5be10fa7c0fd38c3e554d7a32c482 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
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