<button
data-remove={el.commuPostId}
onClick={deleteComment}
>
삭제
</button>
data-어쩌구
이런식으로 내맘대로 쓰면 된다.
const delete = (e) => {
let commentPostId = e.target.dataset.remove;
};
// 구버전 IE는 이렇게 해야 적용된다.
const delete = (e) => {
let commentPostId = e.target.getAttribute("data-remove"),
};
https://www.pluralsight.com/guides/how-to-access-custom-attributes-from-aevent-object-in-react