Skip to content

Commit

Permalink
docs(Card): add example for card link prop
Browse files Browse the repository at this point in the history
  • Loading branch information
BrainMaestro committed Feb 21, 2017
1 parent ad8f382 commit 3bf57bb
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions docs/app/Examples/views/Card/Content/CardExampleLinkCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,20 @@ import React from 'react'
import { Card } from 'semantic-ui-react'

const CardExampleLinkCard = () => (
<Card
href='#link'
header='Elliot Baker'
meta='Friend'
description='Elliot is a sound engineer living in Nashville who enjoys playing guitar and hanging with his cat.'
/>
<Card.Group>
<Card
href='#link'
header='Elliot Baker'
meta='Friend'
description='Elliot is a sound engineer living in Nashville who enjoys playing guitar and hanging with his cat.'
/>
<Card
link
header='Rick Sanchez'
meta='Scientist'
description='Rick is a genius scientist whose alcoholism and reckless, nihilistic behavior are a source of concern for his family'
/>
</Card.Group>
)

export default CardExampleLinkCard

0 comments on commit 3bf57bb

Please sign in to comment.