owncast/web/pages/components/key-value-table.tsx

26 lines
455 B
TypeScript
Raw Normal View History

2020-10-29 20:16:13 +03:00
import { Table, Typography } from "antd";
const { Title } = Typography;
export default function KeyValueTable({ title, data }) {
const columns = [
{
title: "Name",
dataIndex: "name",
key: "name",
},
{
title: "Value",
dataIndex: "value",
key: "value",
},
];
return (
<div>
<Title>{title}</Title>
<Table pagination={false} columns={columns} dataSource={data} />
</div>
);
}