Split up config sections into pages
This commit is contained in:
25
web/pages/components/key-value-table.tsx
Normal file
25
web/pages/components/key-value-table.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user