import React from 'react'; import ReactDOM from 'react-dom'; import Table from '..'; const dataSource = () => { const result = []; for (let i = 0; i < 5; i++) { result.push({ title: { name: `Quotation for 1PCS Nano ${3 + i}.0 controller compatible`, }, id: 100306660940 + i, time: 2000 + i, }); } return result; }; const propsConf = { className: 'next-myclass', style: { background: 'black', color: 'white' }, onDoubleClick: () => { console.log('doubleClicked'); }, }; const setRowProps = (record, index) => { if (index === 2) { return propsConf; } }; const setCellProps = (rowIndex, colIndex, dataIndex, record) => { if (rowIndex === 0 && colIndex === 0) { console.log(record); return propsConf; } }; ReactDOM.render(