I am using material-table of Reactjs npm package, I want display a link with url inside table cells. but it is displaying it as string. Any idea how to display link
data: [
{
subject: 'Announcment',
type: 1,
approver: 'john',
state: 1,
view: "<Link to="/users">cell</Link>",
},
]