質問編集履歴

1

プログラムを簡潔に

2021/11/27 12:27

投稿

lsunrisel
lsunrisel

スコア2

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
- <button type="button" onClick={() => test(users)}>testButton</button>
51
+ {typeof(users)} //undefined
58
52
 
59
53
  </>
60
54