좋아요 숫자 뒤에 버튼을 생성해서 삭제하는 기능을 구현해보자.
<button
onClick={(e) => {
e.stopPropagation();
const newPosts = [...posts];
const newLiked = [...liked];
newPosts.splice(index, 1);
newLiked.splice(index, 1);
setPosts(newPosts);
setLiked(newLiked);
}}
>
삭제
</button>
이젠 아주 간단하쥬?