tutorial |
---|
Based on the knowledge that you now have:
- Please create an
<Alert />
component that receives 1 proptext: Proptype.string
and renders a bootstrap alert like the following:
This is What the component should output as HTML:
<div class="alert alert-danger" role="alert">
OMG! Something really bad has happended!
</div>
- This is how the component should be used:
<Alert text="OMG! Something really bad has happended!" />