You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
590 B
31 lines
590 B
import { Table, Typography } from 'antd'; |
|
import { FC } from 'react'; |
|
|
|
const { Title } = Typography; |
|
|
|
export type KeyValueTableProps = { |
|
title: string; |
|
data: any; |
|
}; |
|
|
|
export const KeyValueTable: FC<KeyValueTableProps> = ({ title, data }) => { |
|
const columns = [ |
|
{ |
|
title: 'Name', |
|
dataIndex: 'name', |
|
key: 'name', |
|
}, |
|
{ |
|
title: 'Value', |
|
dataIndex: 'value', |
|
key: 'value', |
|
}, |
|
]; |
|
|
|
return ( |
|
<> |
|
<Title level={2}>{title}</Title> |
|
<Table pagination={false} columns={columns} dataSource={data} rowKey="name" /> |
|
</> |
|
); |
|
};
|
|
|