回答編集履歴
1
コードを追加
test
CHANGED
@@ -1,8 +1,28 @@
|
|
1
1
|
(grommetについてはあまり詳しくないですが)
|
2
2
|
|
3
|
-
|
3
|
+
```JS
|
4
4
|
|
5
|
+
const App = props => (
|
6
|
+
|
7
|
+
<Box overflow={'scroll'} height='500px'>
|
8
|
+
|
9
|
+
<Card height="300px" flex='false' background="brand"> sample</Card>
|
10
|
+
|
11
|
+
<Card height="300px" flex='false' background="brand"> sample</Card>
|
12
|
+
|
13
|
+
<Card height="300px" flex='false' background="brand"> sample</Card>
|
14
|
+
|
5
|
-
|
15
|
+
</Box>
|
16
|
+
|
17
|
+
);
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
render(<App />);
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
```
|
6
26
|
|
7
27
|
|
8
28
|
|