React イベントハンドラー

イベントハンドラーのイベント名はキャメルケースで記述

function App() {
  return (

  <div onClick={()=>{alert("clicked")}}>
    TEST
  </div>
  
  );
}