import React from 'react'; import ReactDOM from 'react-dom'; import Table from '..'; const onRowClick = function(record, index, e) { console.log(record, index, e); }, 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, year: i === 0 ? '-' : `2019-10-2${3 + i}`, month: `16:39:${23 + i}`, }); } return result; }, cellProps = (rowIndex, colIndex) => { if (rowIndex === 2 && colIndex === 1) { return { // take 3 rows's space rowSpan: 3, }; } if (rowIndex === 0 && colIndex === 2) { return { // take 2 cols' space colSpan: 2, }; } }; ReactDOM.render(