React Hookで、選択項目を切り替えようと思ったのですが、以下のエラーが出ます。
どこが足りないのでしょうか?すみませんがご教授お願いします。
TypeError: Cannot destructure property 'name' of 'e.target' as it is undefined.
react
1 38 | 2 39 | const onChange = (e) => { 3 40 | console.log(e) 4> 41 | const { name, value } = e.target 5 | ^ 42 | // const tempDate = { ...publishDate, [name]: value } 6 43 | // const formated = `${tempDate.dateYear}/${tempDate.dateMonth}/${tempDate.dateDay} ${tempDate.dateTime}:${tempDate.dateMinutes}` 7 44 | // setPublishDate({ ...publishDate, [name]: value })
回答1件
あなたの回答
tips
プレビュー