質問編集履歴
2
内容編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -48,7 +48,7 @@
|
|
48
48
|
|
49
49
|
|
50
50
|
|
51
|
-
function handleMakeNew
|
51
|
+
function handleMakeNew() {
|
52
52
|
|
53
53
|
arrayList.push(renderList());
|
54
54
|
|
@@ -68,7 +68,7 @@
|
|
68
68
|
|
69
69
|
onPress={() => {
|
70
70
|
|
71
|
-
handleMakeNew
|
71
|
+
handleMakeNew();
|
72
72
|
|
73
73
|
}}
|
74
74
|
|
@@ -186,7 +186,7 @@
|
|
186
186
|
|
187
187
|
|
188
188
|
|
189
|
-
function handleMakeNew
|
189
|
+
function handleMakeNew() {
|
190
190
|
|
191
191
|
arrayList.push(renderList());
|
192
192
|
|
@@ -208,7 +208,7 @@
|
|
208
208
|
|
209
209
|
onPress={() => {
|
210
210
|
|
211
|
-
handleMakeNew
|
211
|
+
handleMakeNew();
|
212
212
|
|
213
213
|
}}
|
214
214
|
|
1
内容編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -290,6 +290,20 @@
|
|
290
290
|
|
291
291
|
```
|
292
292
|
|
293
|
+
エラーメッセージは以下の内容です。
|
294
|
+
|
295
|
+
|
296
|
+
|
297
|
+
```ここに言語を入力
|
298
|
+
|
299
|
+
ReferenceError: Can't find variable: forceUpdate
|
300
|
+
|
301
|
+
|
302
|
+
|
303
|
+
```
|
304
|
+
|
305
|
+
|
306
|
+
|
293
307
|
|
294
308
|
|
295
309
|
|