Menu
Coddy logo textTech

3단계: 좋아요 버튼

Coddy React 여정의 기초 (Fundamentals) 섹션에 포함된 레슨 — 42개 중 41번째.

challenge icon

챌린지

중급

카드에 좋아요 기능을 추가하세요.

  1. ProfileCard에 0부터 시작하는 likes 상태를 부여하세요.
  2. id="like" 속성과 Like 텍스트를 가진 버튼을 추가하여 클릭할 때마다 좋아요가 1씩 증가하도록 하세요.
  3. id="likes" 속성을 가진 <span>에 개수를 표시하세요.

직접 해보기

<!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>

기초 (Fundamentals)의 모든 레슨