import React from 'react'; import { Table, Input } from 'antd'; import 'react-highlight-words'; export const CustomParameters = ({ data, onValueChange }) => { const columns = [ { title: 'Key', dataIndex: 'key', key: 'key', width: '50%', }, { title: 'Value', dataIndex: 'value', key: 'value', width: '50%', }, ]; return ( ({ key, value: ( onValueChange(key, e.target.value)} /> ), }))} /> ); };