This repository was archived by the owner on Mar 2, 2022. It is now read-only.

Description
Is it possible to add dynamic className to cell? In original table you can return object in render with keys children and props but in pro table you can't return such object.
Example from original Antd table, but it's not possible in proTable:
{
title: 'Name',
dataIndex: 'name',
render: (text, row, index) => {
if (index < 4) {
return <a>{text}</a>;
}
return {
children: <a>{text}</a>,
props: {
colSpan: 5,
},
};
},
}