(props)
| 2 | import { Card, CardTitle, CardText, CardImg, CardImgOverlay } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <div> |
| 7 | <Card inverse> |
| 8 | <CardImg |
| 9 | width="100%" |
| 10 | src="https://picsum.photos/900/270?grayscale" |
| 11 | alt="Card image cap" |
| 12 | style={{ height: 270 }} |
| 13 | /> |
| 14 | <CardImgOverlay> |
| 15 | <CardTitle tag="h5">Card Title</CardTitle> |
| 16 | <CardText> |
| 17 | This is a wider card with supporting text below as a natural lead-in |
| 18 | to additional content. This content is a little bit longer. |
| 19 | </CardText> |
| 20 | <CardText> |
| 21 | <small className="text-muted">Last updated 3 mins ago</small> |
| 22 | </CardText> |
| 23 | </CardImgOverlay> |
| 24 | </Card> |
| 25 | </div> |
| 26 | ); |
| 27 | } |
| 28 | |
| 29 | export default Example; |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…