[React] input창 enter 이벤트

Noeyso·2023년 2월 17일
0

React

목록 보기
16/18
post-custom-banner

input 태그

<input type='text' className='form-control' onKeyUp={onKeyUp}/>

onKeyUp함수

const onKeyUp = (e:React.KeyboardEvent<HTMLInputElement>)=>{
  if (e.code === 'Enter') {
    onClick(ref.current?.value);
  }
};
profile
React,Typescript를 공부하고 있는 주니어 프론트엔드 개발자입니다. 👩🏻‍💻

0개의 댓글