'use client' import type { DefaultCellComponentProps } from 'payload' import React from 'react' export const CustomCell: React.FC = (props) => { return
{`Custom cell: ${props?.rowData?.customCell || 'No data'}`}
}