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