質問編集履歴
1
プログラムを簡潔に
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,12 +38,6 @@
|
|
38
38
|
|
39
39
|
}
|
40
40
|
|
41
|
-
const test = (users: user[]) => {
|
42
|
-
|
43
|
-
console.log(users) //undefinedになります。
|
44
|
-
|
45
|
-
}
|
46
|
-
|
47
41
|
|
48
42
|
|
49
43
|
const Home = ({ users }: Props) => {
|
@@ -54,7 +48,7 @@
|
|
54
48
|
|
55
49
|
{users} //出力されません。
|
56
50
|
|
57
|
-
|
51
|
+
{typeof(users)} //undefined
|
58
52
|
|
59
53
|
</>
|
60
54
|
|