(props)
| 2 | import { ListGroup, ListGroupItem, Badge } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <ListGroup> |
| 7 | <ListGroupItem className="justify-content-between"> |
| 8 | Cras justo odio <Badge pill>14</Badge> |
| 9 | </ListGroupItem> |
| 10 | <ListGroupItem className="justify-content-between"> |
| 11 | Dapibus ac facilisis in <Badge pill>2</Badge> |
| 12 | </ListGroupItem> |
| 13 | <ListGroupItem className="justify-content-between"> |
| 14 | Morbi leo risus <Badge pill>1</Badge> |
| 15 | </ListGroupItem> |
| 16 | </ListGroup> |
| 17 | ); |
| 18 | } |
| 19 | |
| 20 | Example.parameters = { |
| 21 | docs: { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…