Menu
Coddy logo textTech

Recap: Components

Part of the Fundamentals section of Coddy's React journey — lesson 15 of 42.

challenge icon

Challenge

Easy

Chapter recap: build a page from two components, using everything from this chapter.

  1. Define a Header component: an <h1> with id="title" and the text Coddy Shop. Render it first inside App's outer <div>.
  2. Define a Badge component that returns <span>★</span>.
  3. Inside the existing <div id="badges">, render the Badge twice: one definition, two uses.

Try it yourself

<!DOCTYPE html>
<html>
    <head>
        <link rel="stylesheet" href="styles.css" />
    </head>
    <body>
        <div id="root"></div>
        <script type="module" src="main.jsx"></script>
    </body>
</html>

All lessons in Fundamentals