I'm using https://www.material-react-table.com/docs/guides/row-actions
I can render the cell a specific way according to this example
const columns = useMemo(
() => [
{
header: 'Relevance',
accessorKey: 'rating',
size: 40,
Cell: ({cell}) => {
return <span>{cell.getValue()}</span>;
},
},
)
but how do I access the full row data from inside the span?