Step 2 Practice 🎯

간단한 메모장을 만들어보세요!

📝 메모장

내 메모 목록

아직 메모가 없어요. 첫 메모를 작성해보세요!

📋 구현할 기능

💡 힌트

메모 카드 HTML 구조 예시:

<div class="bg-blue-50 p-4 rounded border border-blue-200">
  <div class="flex justify-between items-start mb-2">
    <h4 class="font-bold">제목</h4>
    <button class="delete-btn ...">삭제</button>
  </div>
  <p class="text-gray-700">내용</p>
</div>