質問編集履歴
1
エラーについて追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,7 +12,8 @@
|
|
12
12
|
function Left1(setTest:(value: React.SetStateAction<JSX.Element>) => void){
|
13
13
|
setTest(<></>);
|
14
14
|
```
|
15
|
-
コンパイルエラーは発生しませんでしたが、ブラウザで確認するとエラーが発生し
|
15
|
+
コンパイルエラーは発生しませんでしたが、ブラウザで確認すると上のコードの一行下のエラーが発生しないであろう行をエラー発生源として表示し、処理が中断されていました。
|
16
|
+
念のため、そのエラー発生源として指摘された部分を削除してみたところ、そのまた一行下のエラーが発生していなかった行がエラーとして指摘されたためコンソールのエラー出力のミスだと思い、一番怪しい処理を今回質問内容として投稿しました
|
16
17
|
```error
|
17
18
|
Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
|
18
19
|
1. You might have mismatching versions of React and the renderer (such as React DOM)
|