Skip to content

Instantly share code, notes, and snippets.

@abberg
Created April 20, 2017 01:08
Show Gist options
  • Save abberg/bfa9a4d0ba9f0407156e26310530c965 to your computer and use it in GitHub Desktop.
Save abberg/bfa9a4d0ba9f0407156e26310530c965 to your computer and use it in GitHub Desktop.
const Card = (props) =>
<div className="c-card">
<img src="{props.img}" className="c-card__img" />
<h2 className="c-card__title">{props.title}</h2>
<p className="c-card__desc">{props.desc}</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment