質問編集履歴
1
コンポーネントのrender部分を追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -185,3 +185,33 @@
|
|
185
185
|
```
|
186
186
|
|
187
187
|
先ほどのFetch部分を除いた関数は、正常に動作しました。
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
### 追記
|
192
|
+
|
193
|
+
```JAVASCRIPT
|
194
|
+
|
195
|
+
return (
|
196
|
+
|
197
|
+
<View style={{backgroundColor:"#f5f5f5",height:"100%",flexDirection:"row",flexWrap:"wrap"}}>
|
198
|
+
|
199
|
+
{Cards()}
|
200
|
+
|
201
|
+
</View>
|
202
|
+
|
203
|
+
)
|
204
|
+
|
205
|
+
コード
|
206
|
+
|
207
|
+
```
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
#### エラー
|
212
|
+
|
213
|
+
```
|
214
|
+
|
215
|
+
Objects are not valid as a React child (found: object with keys {_40, _65, _55, _72}). If you meant to render a collection of children, use an array instead.
|
216
|
+
|
217
|
+
```
|