質問編集履歴
1
appendChildの引数の間違った変数名を修正しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
```
|
20
20
|
|
21
|
-
document.body.appendChild(
|
21
|
+
document.body.appendChild(input)
|
22
22
|
|
23
23
|
```
|
24
24
|
|
@@ -26,7 +26,7 @@
|
|
26
26
|
|
27
27
|
```
|
28
28
|
|
29
|
-
testRef.current.appendChild(
|
29
|
+
testRef.current.appendChild(input)
|
30
30
|
|
31
31
|
```
|
32
32
|
|