Let's take a look at what would be displayed if we placed our component on a page.

We can reuse the List component by passing it different props anytime we need a list. 

<html>
 <body>
  <ul>
    <li>Kale</li>
    <li>Kiwi</li>
  </ul> 
 </body>
</html>
]]>