mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 02:59:04 +08:00
32 lines
457 B
TypeScript
32 lines
457 B
TypeScript
import React from 'react';
|
|
import { Card, List } from 'antd';
|
|
|
|
const data = [
|
|
{
|
|
title: 'Title 1',
|
|
},
|
|
{
|
|
title: 'Title 2',
|
|
},
|
|
{
|
|
title: 'Title 3',
|
|
},
|
|
{
|
|
title: 'Title 4',
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => (
|
|
<List
|
|
grid={{ gutter: 16, column: 4 }}
|
|
dataSource={data}
|
|
renderItem={(item) => (
|
|
<List.Item>
|
|
<Card title={item.title}>Card content</Card>
|
|
</List.Item>
|
|
)}
|
|
/>
|
|
);
|
|
|
|
export default App;
|