LoginSignup
9
3

More than 3 years have passed since last update.

【React + TypeScript】event.preventDefault()をTypeScriptで使う。

Last updated at Posted at 2020-09-02

event.preventDefault()のeventをTypeScriptの型対応

Reactでなかなかの頻度で使用するevent.preventDefault()をTypeScript対応させるとこんな感じ。

 const functionName = (e: React.MouseEvent<HTMLElement, MouseEvent>) => {
    e.preventDefault()
    ...
 }

みんなも使ってね。

9
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
3