owncast/web/pages/components/key-value-table.tsx
2020-11-28 18:43:59 -08:00

26 lines
473 B
TypeScript

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 (
<>
<Title level={2}>{title}</Title>
<Table pagination={false} columns={columns} dataSource={data} rowKey="name" />
</>
);
}