import React from 'react'; import { Descriptions } from 'antd'; import type { DescriptionsProps } from 'antd'; const items: DescriptionsProps['items'] = [ { key: '1', label: 'Product', children: 'Cloud Database', }, { key: '2', label: 'Billing', children: 'Prepaid', }, { key: '3', label: 'Time', children: '18:00:00', }, { key: '4', label: 'Amount', children: '$80.00', }, { key: '5', label: 'Discount', children: '$20.00', }, { key: '6', label: 'Official', children: '$60.00', }, { key: '7', 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;