You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
자음과 모음을 조합 중인지를 KeyboardEvent.isComposing 으로 확인 가능
constonKeyDown: KeyboardEventHandler<HTMLTextAreaElement>=(e)=>{if(e.key==='Enter'){e.preventDefault();if(e.nativeEvent.isComposing)return;// react 에서는 nativeEvent를 통해 접근 가능}};
The text was updated successfully, but these errors were encountered:
자음과 모음을 처리하며 발생
자음과 모음을 조합 중인지를
KeyboardEvent.isComposing
으로 확인 가능The text was updated successfully, but these errors were encountered: