Skip to content

Latest commit

 

History

History
 
 

03.5-alert-component

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
tutorial

03.5 Alert Component

Based on the knowledge that you now have:

📝 Instructions:

  1. Please create an <Alert /> component that receives 1 prop text: Proptype.string and renders a bootstrap alert like the following:

Expected Result:

This is What the component should output as HTML:

<div class="alert alert-danger" role="alert">
  OMG! Something really bad has happended!
</div>

💡 Hint:

  • This is how the component should be used:
<Alert text="OMG! Something really bad has happended!" />