function CommentListItem({
isLogin,
id,
postId,
username,
content,
handleDeleteComment,
}) {
return (
<>
<PostCommentLeft>
<PostCommentWriter>{username}</PostCommentWriter>
<PostCommentContent>{content}</PostCommentContent>
</PostCommentLeft>
<PostCommentRight>
<PostCommentButton onClick={() => handleDeleteComment(id, postId)}>
✂️
</PostCommentButton>
</PostCommentRight>
</>
);
}