Skip to content

Instantly share code, notes, and snippets.

@hochan222
Created July 7, 2021 04:24
Show Gist options
  • Save hochan222/00fa81309d6521cf84ce75ca900e6f04 to your computer and use it in GitHub Desktop.
Save hochan222/00fa81309d6521cf84ce75ca900e6f04 to your computer and use it in GitHub Desktop.
마우스 우클릭 동작 (React)
<div
onContextMenu={
(e) => {
e.preventDefault();
console.log('no menu');
}
}>
</div>
// event 발생시 preventDefault를 통해 기본적인 브라우저 동작에 의한 메뉴 생성을 중단할 수 있다.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment