質問編集履歴
1
console.logの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -177,3 +177,19 @@
|
|
177
177
|
下記がCodesandboxのURLとなります。
|
178
178
|
|
179
179
|
[https://codesandbox.io/s/epic-edison-osrvl?file=/src/App.tsx:408-421](https://codesandbox.io/s/epic-edison-osrvl?file=/src/App.tsx:408-421)
|
180
|
+
|
181
|
+
|
182
|
+
|
183
|
+
### 追記
|
184
|
+
|
185
|
+
App.tsxでのconsole.logの結果は下記となります。
|
186
|
+
|
187
|
+
console.log(props)
|
188
|
+
|
189
|
+
⇒{arrays: Array(3)}
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
console.log(props.arrays)
|
194
|
+
|
195
|
+
⇒(3) [Object, Object, Object]
|