You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
598 B
45 lines
598 B
import React from 'react';
|
|
import { Card, List } from 'antd';
|
|
|
|
const data = [
|
|
{
|
|
title: 'Title 1',
|
|
},
|
|
{
|
|
title: 'Title 2',
|
|
},
|
|
{
|
|
title: 'Title 3',
|
|
},
|
|
{
|
|
title: 'Title 4',
|
|
},
|
|
{
|
|
title: 'Title 5',
|
|
},
|
|
{
|
|
title: 'Title 6',
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => (
|
|
<List
|
|
grid={{
|
|
gutter: 16,
|
|
xs: 1,
|
|
sm: 2,
|
|
md: 4,
|
|
lg: 4,
|
|
xl: 6,
|
|
xxl: 3,
|
|
}}
|
|
dataSource={data}
|
|
renderItem={(item) => (
|
|
<List.Item>
|
|
<Card title={item.title}>Card content</Card>
|
|
</List.Item>
|
|
)}
|
|
/>
|
|
);
|
|
|
|
export default App;
|
|
|