(props)
| 2 | import { Alert } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <Alert color="success"> |
| 7 | <h4 className="alert-heading">Well done!</h4> |
| 8 | <p> |
| 9 | Aww yeah, you successfully read this important alert message. This |
| 10 | example text is going to run a bit longer so that you can see how |
| 11 | spacing within an alert works with this kind of content. |
| 12 | </p> |
| 13 | <hr /> |
| 14 | <p className="mb-0"> |
| 15 | Whenever you need to, be sure to use margin utilities to keep things |
| 16 | nice and tidy. |
| 17 | </p> |
| 18 | </Alert> |
| 19 | ); |
| 20 | } |
| 21 | |
| 22 | export default Example; |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…