Skip to content

Latest commit

 

History

History
 
 

04-conditional-rendering

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
tutorial

04 Conditional Rendering

You can also use the component properties to change its behavior, like show or hide your <Alert /> based on a property called show.

{/* This will make your alert show */}
<Alert text="Are you sure?" show={true}>

{/* This will make your alert to be hidden */}
<Alert text="Are you sure?" show={false}>

We can acomplish that by adding a if... else... statement inside the render method like this:

const Alert = (props) => {
    if(props.show === false){
        return null;
    }
    else{
        // return here the component html
    }
};

Note: ☝️ Returning different HTML code based on conditions its formally called conditional rendering.

📝 Instructions:

  1. Create an <Alert /> component that renders a bootstrap alert.

💡 Hint:

The component must be able to receive the following 2 properties:

  • Show (bool): True or false.

  • Text (string): The message to include inside the alert message.