Last active
September 24, 2017 13:35
-
-
Save adamduncan/f25f3042e89f31e7044392d887063a3d to your computer and use it in GitHub Desktop.
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
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