(args)
| 2 | import { ListGroup, ListGroupItem } from 'reactstrap'; |
| 3 | |
| 4 | function Example(args) { |
| 5 | return ( |
| 6 | <ListGroup {...args}> |
| 7 | <ListGroupItem>Cras justo odio</ListGroupItem> |
| 8 | <ListGroupItem active>Dapibus ac facilisis in</ListGroupItem> |
| 9 | <ListGroupItem>Morbi leo risus</ListGroupItem> |
| 10 | <ListGroupItem>Porta ac consectetur ac</ListGroupItem> |
| 11 | <ListGroupItem>Vestibulum at eros</ListGroupItem> |
| 12 | </ListGroup> |
| 13 | ); |
| 14 | } |
| 15 | |
| 16 | Example.parameters = { |
| 17 | docs: { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…