import React, { SyntheticEvent } from 'react'; const App = () => { const handleEvent = (e: SyntheticEvent<HTMLDivElement>) => { // Do something }; return <div ...
確定! 回上一頁