event

유석현(SeokHyun Yu)·2022년 11월 19일

React

목록 보기
5/21
post-thumbnail

AppEvent.jsx

export default function AppEvent() {
  const handleClick = (event) => {
    console.log(event);
    alert("버튼 클릭!");
  };
  return (
    <>
      <button onClick={handleClick}>버튼</button>

      <form
        onSubmit={() => {
          alert("submit");
        }}
      >
        <input type="submit" />
      </form>
    </>
  );
}
profile
Backend Engineer

0개의 댓글