質問編集履歴
3
質問の解答
test
CHANGED
File without changes
|
test
CHANGED
@@ -44,7 +44,7 @@
|
|
44
44
|
|
45
45
|
return (
|
46
46
|
|
47
|
-
<Card a11yTitle={index}>
|
47
|
+
<Card a11yTitle={index} key={item.title}>
|
48
48
|
|
49
49
|
<Box>
|
50
50
|
|
2
質問の解答
test
CHANGED
File without changes
|
test
CHANGED
@@ -40,11 +40,11 @@
|
|
40
40
|
|
41
41
|
|
42
42
|
|
43
|
-
{information.map((item) => {
|
43
|
+
{information.map((item, index) => {
|
44
44
|
|
45
45
|
return (
|
46
46
|
|
47
|
-
<Card>
|
47
|
+
<Card a11yTitle={index}>
|
48
48
|
|
49
49
|
<Box>
|
50
50
|
|
1
質問の解答
test
CHANGED
File without changes
|
test
CHANGED
@@ -35,6 +35,8 @@
|
|
35
35
|
{'title': 'fuga', 'info': 'fuga'}
|
36
36
|
|
37
37
|
}
|
38
|
+
|
39
|
+
const [show, setShow] = React.useState();
|
38
40
|
|
39
41
|
|
40
42
|
|