(props)
| 2 | import { ListGroup, ListGroupItem } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <div> |
| 7 | <p> |
| 8 | The <code>numbered</code> prop can be used to opt into numbered list |
| 9 | group items. |
| 10 | </p> |
| 11 | <ListGroup numbered> |
| 12 | <ListGroupItem>Cras justo odio</ListGroupItem> |
| 13 | <ListGroupItem>Dapibus ac facilisis in</ListGroupItem> |
| 14 | <ListGroupItem>Morbi leo risus</ListGroupItem> |
| 15 | <ListGroupItem>Porta ac consectetur ac</ListGroupItem> |
| 16 | <ListGroupItem>Vestibulum at eros</ListGroupItem> |
| 17 | </ListGroup> |
| 18 | </div> |
| 19 | ); |
| 20 | } |
| 21 | |
| 22 | Example.parameters = { |
| 23 | docs: { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…