mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 16:19:15 +08:00
30 lines
697 B
TypeScript
30 lines
697 B
TypeScript
|
import React from 'react';
|
||
|
import { Descriptions } from 'antd';
|
||
|
import type { DescriptionsProps } from 'antd';
|
||
|
|
||
|
const items: DescriptionsProps['items'] = [
|
||
|
{
|
||
|
label: 'UserName',
|
||
|
children: 'Zhou Maomao',
|
||
|
},
|
||
|
{
|
||
|
label: 'Live',
|
||
|
span: 'filled', // span = 2
|
||
|
children: 'Hangzhou, Zhejiang',
|
||
|
},
|
||
|
{
|
||
|
label: 'Remark',
|
||
|
span: 'filled', // span = 3
|
||
|
children: 'empty',
|
||
|
},
|
||
|
{
|
||
|
label: 'Address',
|
||
|
span: 1, // span will be 3 and warning for span is not align to the end
|
||
|
children: 'No. 18, Wantang Road, Xihu District, Hangzhou, Zhejiang, China',
|
||
|
},
|
||
|
];
|
||
|
|
||
|
const App: React.FC = () => <Descriptions bordered title="User Info" items={items} />;
|
||
|
|
||
|
export default App;
|