import React from 'react'; import { Badge, Descriptions } from 'antd'; import type { DescriptionsProps } from 'antd'; 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', children: '2019-04-24 18:00:00', span: 2, }, { key: '6', label: 'Status', children: , span: 3, }, { 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
Database version: 3.4
Package: dds.mongo.mid
Storage space: 10 GB
Replication factor: 3
Region: East China 1
), }, ]; const App: React.FC = () => ; export default App;