Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alanbsmith/464fb0f4b5812d92e5c55ed09562c2f9 to your computer and use it in GitHub Desktop.
Save alanbsmith/464fb0f4b5812d92e5c55ed09562c2f9 to your computer and use it in GitHub Desktop.
structuring-our-styled-components-block-example
// 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