(props)
| 2 | import { Card, Button, CardTitle, CardText, Row, Col } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <Row> |
| 7 | <Col sm="6"> |
| 8 | <Card body> |
| 9 | <CardTitle tag="h5">Special Title Treatment</CardTitle> |
| 10 | <CardText> |
| 11 | With supporting text below as a natural lead-in to additional |
| 12 | content. |
| 13 | </CardText> |
| 14 | <Button>Go somewhere</Button> |
| 15 | </Card> |
| 16 | </Col> |
| 17 | <Col sm="6"> |
| 18 | <Card body> |
| 19 | <CardTitle tag="h5">Special Title Treatment</CardTitle> |
| 20 | <CardText> |
| 21 | With supporting text below as a natural lead-in to additional |
| 22 | content. |
| 23 | </CardText> |
| 24 | <Button>Go somewhere</Button> |
| 25 | </Card> |
| 26 | </Col> |
| 27 | </Row> |
| 28 | ); |
| 29 | } |
| 30 | |
| 31 | export default Example; |
| 32 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…