Skip to content

Instantly share code, notes, and snippets.

@diegohaz
Created June 4, 2018 02:10
Show Gist options
  • Save diegohaz/b3716976a0852acf5a3177dcd0a38299 to your computer and use it in GitHub Desktop.
Save diegohaz/b3716976a0852acf5a3177dcd0a38299 to your computer and use it in GitHub Desktop.
const Card = ({ profile, imageUrl, imageAlt, title, description }) => (
<div className="card">
<div className="top-bar">
<img className="avatar" src={profile.photoUrl} alt={profile.photoAlt} />
<div className="username">{profile.username}</div>
</div>
<img className="image" src={imageUrl} alt={imageAlt} />
<div className="content">
<h2 className="title">{title}</h2>
<p className="description">{description}</p>
</div>
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment