Last active
December 9, 2017 14:02
-
-
Save alanbsmith/464fb0f4b5812d92e5c55ed09562c2f9 to your computer and use it in GitHub Desktop.
structuring-our-styled-components-block-example
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
// SomeComponent.js | |
import Card from './blocks/Card'; | |
... | |
<Card> | |
<Card.Header> | |
<Card.Image | |
alt=”bob-ross-headshot” | |
src=”www.example.com/bob-ross.jpg” | |
/> | |
<Card.Title> | |
Bob Ross | |
</Card.Title> | |
</Card.Header> | |
<Card.Text> | |
Robert Norman Ross (October 29, 1942 – July 4, 1995) was an American painter, | |
art instructor, and television host. He was the creator and host of | |
The Joy of Painting, an instructional television program that aired from | |
1983 to 1994 on PBS in the United States… | |
</Card.Text> | |
</Card> | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment