前提・実現したいこと
React Hooksを使っています。
selectedDateはarrayであるにも関わらず、mapを利用すると以下のように怒られます。
何が問題なのでしょうか。
ご教授お願いします。
発生している問題・エラーメッセージ
TypeError: selectedDate.map is not a function
該当のソースコード
const [selectedDate, setSelectedDate] = React.useState([ new Date("2014-08-18T21:11:54"), new Date("2014-08-18T21:11:54"), new Date("2014-08-18T21:11:54"), new Date("2014-08-18T21:11:54"), new Date("2014-08-18T21:11:54"), new Date("2014-08-18T21:11:54"), ]); ... {selectedDate.map((date, index) => {
あなたの回答
tips
プレビュー