이벤트를 처리할 때, 기본동작을 없애고 넘겨준 것만 실행을 하고 싶다면 preventDefault를 이용한다.
const onHandleClickLike = (e) => { e.preventDefault(); }