質問編集履歴
1
実装したい内容に対してサンプルが間違っていたので修正しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,23 +18,21 @@
|
|
18
18
|
|
19
19
|
```React
|
20
20
|
|
21
|
-
import
|
21
|
+
import { Hoge } from './components/Hoge';
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
let strAry: string[];
|
26
|
+
|
27
|
+
axios.post<string[]>("http://localhost:8080/", null, undefined).then((res) => {
|
28
|
+
|
29
|
+
strAry = res.data;
|
30
|
+
|
31
|
+
});
|
22
32
|
|
23
33
|
|
24
34
|
|
25
35
|
function App() {
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
let strAry: string[];
|
30
|
-
|
31
|
-
axios.post<string[]>("http://localhost:8080/", null, undefined).then((res) => {
|
32
|
-
|
33
|
-
strAry = res.data;
|
34
|
-
|
35
|
-
});
|
36
|
-
|
37
|
-
|
38
36
|
|
39
37
|
return (
|
40
38
|
|
@@ -43,8 +41,6 @@
|
|
43
41
|
<Hoge strAry={strAry} />
|
44
42
|
|
45
43
|
</div>
|
46
|
-
|
47
|
-
|
48
44
|
|
49
45
|
);
|
50
46
|
|