質問編集履歴

2

追記

2020/12/07 04:18

投稿

kobaryo04ysh
kobaryo04ysh

スコア29

test CHANGED
File without changes
test CHANGED
@@ -359,3 +359,29 @@
359
359
 
360
360
 
361
361
  この、`Line 0: Parsing error: Cannot read property 'map' of undefined`の原因など含め教えていただけると幸いです。
362
+
363
+
364
+
365
+
366
+
367
+ ## 追記
368
+
369
+
370
+
371
+ parsing errorは解決したものの、以下のエラーが起こりました。
372
+
373
+
374
+
375
+ ```
376
+
377
+ Argument of type 'Answer[]' is not assignable to parameter of type 'SetStateAction<never[]>'.
378
+
379
+ Type 'Answer[]' is not assignable to type 'never[]'.
380
+
381
+ Type 'Answer' is not assignable to type 'never'. TS2345
382
+
383
+ ```
384
+
385
+
386
+
387
+ 該当箇所は、`App.tsx`ファイル内の`displayNextQuestion`の`setAnswers(nextDataset.answers)`部分です。

1

コメントの追加

2020/12/07 04:18

投稿

kobaryo04ysh
kobaryo04ysh

スコア29

test CHANGED
File without changes
test CHANGED
@@ -350,4 +350,12 @@
350
350
 
351
351
 
352
352
 
353
+ ちなみに、`App.tsx`の`interface Dataset`や`interface Answer`の記述を消すと該当のエラーは消えます。が、別の型のエラーが起こります。
354
+
355
+
356
+
353
357
  ググってもいい感じのヒントになりそうな情報が得られなかったため、質問させていただきました。
358
+
359
+
360
+
361
+ この、`Line 0: Parsing error: Cannot read property 'map' of undefined`の原因など含め教えていただけると幸いです。