Menu
Coddy logo textTech

Step 3: Like Button

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

challenge icon

Challenge

Medium

Add likes to the card.

  1. Give ProfileCard a likes state starting at 0.
  2. Add a button with id="like" and the text Like that adds one like per click.
  3. Show the count in a <span> with id="likes".

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