(props)
| 2 | import { Button, ButtonGroup } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <ButtonGroup> |
| 7 | <Button color="danger">Left</Button> |
| 8 | <Button color="warning">Middle</Button> |
| 9 | <Button color="success">Right</Button> |
| 10 | </ButtonGroup> |
| 11 | ); |
| 12 | } |
| 13 | |
| 14 | export default Example; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…