()
| 194 | |
| 195 | class Example4 extends React.Component { |
| 196 | render() { |
| 197 | return ( |
| 198 | <div> |
| 199 | <Badge color="default" pill> |
| 200 | default |
| 201 | </Badge>{' '} |
| 202 | <Badge color="primary" pill> |
| 203 | primary |
| 204 | </Badge>{' '} |
| 205 | <Badge color="success" pill> |
| 206 | success |
| 207 | </Badge>{' '} |
| 208 | <Badge color="info" pill> |
| 209 | info |
| 210 | </Badge>{' '} |
| 211 | <Badge color="warning" pill> |
| 212 | warning |
| 213 | </Badge>{' '} |
| 214 | <Badge color="danger" pill> |
| 215 | danger |
| 216 | </Badge> |
| 217 | </div> |
| 218 | ); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | // ------------- Breadcrumbs |
nothing calls this directly
no outgoing calls
no test coverage detected