Skip to content

Instantly share code, notes, and snippets.

@hieptl
Created August 4, 2021 13:36
Show Gist options
  • Save hieptl/3f902a49770513c2b420c179a9528633 to your computer and use it in GitHub Desktop.
Save hieptl/3f902a49770513c2b420c179a9528633 to your computer and use it in GitHub Desktop.
StoryCard Component - Facebook Clone
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