mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 13:27:21 +08:00 
			
		
		
		
	* move components folder and fix build errors Fixes https://github.com/owncast/owncast/issues/689 * Prettified Code! Co-authored-by: nebunez <nebunez@users.noreply.github.com>
		
			
				
	
	
		
			31 lines
		
	
	
		
			557 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			557 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Table, Typography } from 'antd';
 | 
						|
 | 
						|
const { Title } = Typography;
 | 
						|
 | 
						|
export default function KeyValueTable({ title, data }: KeyValueTableProps) {
 | 
						|
  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" />
 | 
						|
    </>
 | 
						|
  );
 | 
						|
}
 | 
						|
 | 
						|
interface KeyValueTableProps {
 | 
						|
  title: string;
 | 
						|
  data: any;
 | 
						|
}
 |