Created
August 4, 2021 13:36
-
-
Save hieptl/3f902a49770513c2b420c179a9528633 to your computer and use it in GitHub Desktop.
StoryCard Component - Facebook Clone
This file contains hidden or 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
function StoryCard({ name, src, profile }) { | |
return ( | |
<div className="story__card"> | |
<img | |
className="story__profile" | |
src={profile} | |
/> | |
<img | |
className="story__background" | |
src={src} | |
/> | |
<p className="story__name"> | |
{name} | |
</p> | |
</div> | |
); | |
} | |
export default StoryCard; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment