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>
80 lines
1.4 KiB
TypeScript
80 lines
1.4 KiB
TypeScript
import { Badge, Descriptions } from 'antd';
|
|
import type { DescriptionsProps } from 'antd/es/descriptions';
|
|
import React from 'react';
|
|
|
|
const items: DescriptionsProps['items'] = [
|
|
{
|
|
key: '1',
|
|
label: 'Product',
|
|
children: 'Cloud Database',
|
|
},
|
|
{
|
|
key: '2',
|
|
label: 'Billing Mode',
|
|
children: 'Prepaid',
|
|
},
|
|
{
|
|
key: '3',
|
|
label: 'Automatic Renewal',
|
|
children: 'YES',
|
|
},
|
|
{
|
|
key: '4',
|
|
label: 'Order time',
|
|
children: '2018-04-24 18:00:00',
|
|
},
|
|
{
|
|
key: '5',
|
|
label: 'Usage Time',
|
|
span: 2,
|
|
children: '2019-04-24 18:00:00',
|
|
},
|
|
{
|
|
key: '6',
|
|
label: 'Status',
|
|
span: 3,
|
|
children: <Badge status="processing" text="Running" />,
|
|
},
|
|
{
|
|
key: '7',
|
|
label: 'Negotiated Amount',
|
|
children: '$80.00',
|
|
},
|
|
{
|
|
key: '8',
|
|
label: 'Discount',
|
|
children: '$20.00',
|
|
},
|
|
{
|
|
key: '9',
|
|
label: 'Official Receipts',
|
|
children: '$60.00',
|
|
},
|
|
{
|
|
key: '10',
|
|
label: 'Config Info',
|
|
children: (
|
|
<>
|
|
Data disk type: MongoDB
|
|
<br />
|
|
Database version: 3.4
|
|
<br />
|
|
Package: dds.mongo.mid
|
|
<br />
|
|
Storage space: 10 GB
|
|
<br />
|
|
Replication factor: 3
|
|
<br />
|
|
Region: East China 1
|
|
<br />
|
|
</>
|
|
),
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => (
|
|
<Descriptions title="User Info" layout="vertical" bordered items={items} />
|
|
);
|
|
|
|
export default App;
|