mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 13:09:40 +08:00
36 lines
679 B
TypeScript
36 lines
679 B
TypeScript
import React from 'react';
|
|
import { Descriptions } from 'antd';
|
|
import type { DescriptionsProps } from 'antd';
|
|
|
|
const items: DescriptionsProps['items'] = [
|
|
{
|
|
key: '1',
|
|
label: 'UserName',
|
|
children: 'Zhou Maomao',
|
|
},
|
|
{
|
|
key: '2',
|
|
label: 'Telephone',
|
|
children: '1810000000',
|
|
},
|
|
{
|
|
key: '3',
|
|
label: 'Live',
|
|
children: 'Hangzhou, Zhejiang',
|
|
},
|
|
{
|
|
key: '4',
|
|
label: 'Remark',
|
|
children: 'empty',
|
|
},
|
|
{
|
|
key: '5',
|
|
label: 'Address',
|
|
children: 'No. 18, Wantang Road, Xihu District, Hangzhou, Zhejiang, China',
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => <Descriptions title="User Info" items={items} />;
|
|
|
|
export default App;
|