Skip to content

Instantly share code, notes, and snippets.

@adamduncan
Last active September 24, 2017 13:35
Show Gist options
  • Save adamduncan/f25f3042e89f31e7044392d887063a3d to your computer and use it in GitHub Desktop.
Save adamduncan/f25f3042e89f31e7044392d887063a3d to your computer and use it in GitHub Desktop.
const StyledCard = styled.div`
background-color: #eee;
padding: 1rem;
border-radius: 0.25rem;
`
const Card = ({ title, copy }) => {
return (
<StyledCard>
<h3>{ title }</h3>
<p>{ copy }</p>
</StyledCard>
)
}
export default Card
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment