質問編集履歴
3
記載ミス
title
CHANGED
File without changes
|
body
CHANGED
@@ -28,11 +28,13 @@
|
|
28
28
|
```
|
29
29
|
<Box xflex={true} fill >
|
30
30
|
<Box flex={true} overflow={'scroll'} >
|
31
|
+
// スクロールできない
|
31
32
|
<Card height="300px" background="brand"> sample</Card>
|
32
33
|
<Card height="300px" background="brand"> sample</Card>
|
33
34
|
<Card height="300px" background="brand"> sample</Card>
|
34
35
|
|
35
36
|
|
37
|
+
// うまくスクロールできる
|
36
38
|
{/*<Table caption='Simple Table'>
|
37
39
|
<TableBody>
|
38
40
|
{DATA.map(datum => (
|
2
質問の解答
title
CHANGED
File without changes
|
body
CHANGED
@@ -23,4 +23,31 @@
|
|
23
23
|
<Card height="300px" background="brand"> sample</Card>
|
24
24
|
<Card height="300px" background="brand"> sample</Card>
|
25
25
|
</Box>
|
26
|
+
```
|
27
|
+
|
28
|
+
```
|
29
|
+
<Box xflex={true} fill >
|
30
|
+
<Box flex={true} overflow={'scroll'} >
|
31
|
+
<Card height="300px" background="brand"> sample</Card>
|
32
|
+
<Card height="300px" background="brand"> sample</Card>
|
33
|
+
<Card height="300px" background="brand"> sample</Card>
|
34
|
+
|
35
|
+
|
36
|
+
{/*<Table caption='Simple Table'>
|
37
|
+
<TableBody>
|
38
|
+
{DATA.map(datum => (
|
39
|
+
<TableRow key={datum.id}>
|
40
|
+
{COLUMNS.map(c => (
|
41
|
+
<TableCell key={c.property} scope={c.dataScope} align={c.align}>
|
42
|
+
<Text>
|
43
|
+
{c.format ? c.format(datum) : datum[c.property]}
|
44
|
+
</Text>
|
45
|
+
</TableCell>
|
46
|
+
))}
|
47
|
+
</TableRow>
|
48
|
+
))}
|
49
|
+
</TableBody>
|
50
|
+
</Table>*/}
|
51
|
+
</Box>
|
52
|
+
</Box>
|
26
53
|
```
|
1
変更
title
CHANGED
File without changes
|
body
CHANGED
File without changes
|