Cara menampilkan tautan html di dalam sel meja menggunakan tabel material reactjs
import { Link } from 'react-router';
const columns = [
{
header: '',
id: 'links',
render: ({ row }) => (<Link to={{ pathname: `/example/${row.id}` }}>{row.name}</Link>)
}
];
Jainil Sevalia