(props)
| 2 | import { Badge } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <div> |
| 7 | <Badge color="primary">Primary</Badge> |
| 8 | <Badge color="secondary">Secondary</Badge> |
| 9 | <Badge color="success">Success</Badge> |
| 10 | <Badge color="danger">Danger</Badge> |
| 11 | <Badge color="warning">Warning</Badge> |
| 12 | <Badge color="info">Info</Badge> |
| 13 | <Badge color="light" className="text-dark"> |
| 14 | Light |
| 15 | </Badge> |
| 16 | <Badge color="dark">Dark</Badge> |
| 17 | </div> |
| 18 | ); |
| 19 | } |
| 20 | |
| 21 | export default Example; |
| 22 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…