質問編集履歴
2
constructor について追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -142,6 +142,20 @@
|
|
142
142
|
|
143
143
|
mapがDTPhoneには無い(Undefined)と表示され使えず。
|
144
144
|
|
145
|
+
・App.tsx内にconstructorを以下のように書いてみようとしましたがエラーが発生したため断念;
|
146
|
+
|
147
|
+
```
|
148
|
+
|
149
|
+
constructor(props: DevicesProps) {
|
150
|
+
|
151
|
+
super(props);
|
152
|
+
|
153
|
+
this.state = {DevicesProps:DevicesProps[]};
|
154
|
+
|
155
|
+
}
|
156
|
+
|
157
|
+
```
|
158
|
+
|
145
159
|
|
146
160
|
|
147
161
|
|
1
app.tsxが表示されていなかったため表示
test
CHANGED
File without changes
|
test
CHANGED
@@ -84,7 +84,7 @@
|
|
84
84
|
|
85
85
|
```
|
86
86
|
|
87
|
-
```
|
87
|
+
```App
|
88
88
|
|
89
89
|
import React from 'react';
|
90
90
|
|