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