import React from 'react'; import { DownOutlined } from '@ant-design/icons'; import type { TableColumnsType } from 'antd'; import { Badge, Dropdown, Space, Table } from 'antd'; interface ExpandedDataType { key: React.Key; date: string; name: string; upgradeNum: string; } interface DataType { key: React.Key; name: string; platform: string; version: string; upgradeNum: number; creator: string; createdAt: string; } const items = [ { key: '1', label: 'Action 1' }, { key: '2', label: 'Action 2' }, ]; const expandDataSource = Array.from({ length: 3 }).map((_, i) => ({ key: i.toString(), date: '2014-12-24 23:12:00', name: 'This is production name', upgradeNum: 'Upgraded: 56', })); const dataSource = Array.from({ length: 3 }).map((_, i) => ({ key: i.toString(), name: 'Screen', platform: 'iOS', version: '10.3.4.5654', upgradeNum: 500, creator: 'Jack', createdAt: '2014-12-24 23:12:00', })); const expandColumns: TableColumnsType = [ { title: 'Date', dataIndex: 'date', key: 'date' }, { title: 'Name', dataIndex: 'name', key: 'name' }, { title: 'Status', key: 'state', render: () => , }, { title: 'Upgrade Status', dataIndex: 'upgradeNum', key: 'upgradeNum' }, { title: 'Action', key: 'operation', render: () => ( Pause Stop More ), }, ]; const columns: TableColumnsType = [ { title: 'Name', dataIndex: 'name', key: 'name' }, { title: 'Platform', dataIndex: 'platform', key: 'platform' }, { title: 'Version', dataIndex: 'version', key: 'version' }, { title: 'Upgraded', dataIndex: 'upgradeNum', key: 'upgradeNum' }, { title: 'Creator', dataIndex: 'creator', key: 'creator' }, { title: 'Date', dataIndex: 'createdAt', key: 'createdAt' }, { title: 'Action', key: 'operation', render: () => Publish }, ]; const expandedRowRender = () => ( columns={expandColumns} dataSource={expandDataSource} pagination={false} /> ); const App: React.FC = () => ( <> columns={columns} expandable={{ expandedRowRender, defaultExpandedRowKeys: ['0'] }} dataSource={dataSource} /> columns={columns} expandable={{ expandedRowRender, defaultExpandedRowKeys: ['0'] }} dataSource={dataSource} size="middle" /> columns={columns} expandable={{ expandedRowRender, defaultExpandedRowKeys: ['0'] }} dataSource={dataSource} size="small" /> ); export default App;