(props)
| 2 | import { Button } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <div> |
| 7 | <Button color="primary">primary</Button>{' '} |
| 8 | <Button color="secondary">secondary</Button>{' '} |
| 9 | <Button color="success">success</Button>{' '} |
| 10 | <Button color="info">info</Button>{' '} |
| 11 | <Button color="warning">warning</Button>{' '} |
| 12 | <Button color="danger">danger</Button> <Button color="link">link</Button> |
| 13 | </div> |
| 14 | ); |
| 15 | } |
| 16 | |
| 17 | export default Example; |
| 18 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…