mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 16:19:15 +08:00
ecb36840bf
* feat: descriptions implement items api * docs: add jsx debug demo * refactor: add useRow hook * Update components/descriptions/index.tsx Co-authored-by: Wuxh <wxh1220@gmail.com> Signed-off-by: 红果汁 <pingfj77@gmail.com> * Update components/descriptions/index.zh-CN.md Co-authored-by: Wuxh <wxh1220@gmail.com> Signed-off-by: 红果汁 <pingfj77@gmail.com> * Update components/descriptions/index.en-US.md Co-authored-by: Wuxh <wxh1220@gmail.com> Signed-off-by: 红果汁 <pingfj77@gmail.com> * fix: decrease in coverage * refactor: enhancement code --------- Signed-off-by: 红果汁 <pingfj77@gmail.com> Co-authored-by: Wuxh <wxh1220@gmail.com>
36 lines
695 B
TypeScript
36 lines
695 B
TypeScript
import { Descriptions } from 'antd';
|
|
import type { DescriptionsProps } from 'antd/es/descriptions';
|
|
import React from 'react';
|
|
|
|
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;
|