()
| 285 | |
| 286 | class Example8 extends React.Component { |
| 287 | render() { |
| 288 | return ( |
| 289 | <div> |
| 290 | <Button outline color="primary"> |
| 291 | primary |
| 292 | </Button>{' '} |
| 293 | <Button outline color="secondary"> |
| 294 | secondary |
| 295 | </Button>{' '} |
| 296 | <Button outline color="success"> |
| 297 | success |
| 298 | </Button>{' '} |
| 299 | <Button outline color="info"> |
| 300 | info |
| 301 | </Button>{' '} |
| 302 | <Button outline color="warning"> |
| 303 | warning |
| 304 | </Button>{' '} |
| 305 | <Button outline color="danger"> |
| 306 | danger |
| 307 | </Button> |
| 308 | </div> |
| 309 | ); |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | const Example9 = ( |
nothing calls this directly
no outgoing calls
no test coverage detected