(props)
| 2 | import { UncontrolledCollapse, Button, CardBody, Card } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <div> |
| 7 | <Button color="primary" id="toggler" style={{ marginBottom: '1rem' }}> |
| 8 | Toggle |
| 9 | </Button> |
| 10 | <UncontrolledCollapse toggler="#toggler"> |
| 11 | <Card> |
| 12 | <CardBody> |
| 13 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt |
| 14 | magni, voluptas debitis similique porro a molestias consequuntur |
| 15 | earum odio officiis natus, amet hic, iste sed dignissimos esse fuga! |
| 16 | Minus, alias. |
| 17 | </CardBody> |
| 18 | </Card> |
| 19 | </UncontrolledCollapse> |
| 20 | </div> |
| 21 | ); |
| 22 | } |
| 23 | |
| 24 | export default Example; |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…