Is it possible to export your custom cells rendering for the excel export.
For example
    const Cell = (props: any) => {
            const endDate = moment(props?.endDateData).format("D MMMM YYYY hh:mm:ss")
            return (
                <td>
                 {endDate} 
                </td>
            )
      };
      
    const CustomCell = (props: any) => <Cell {...props} />;
   // The column in the grid
   <Column field="endDateData" title="End" cell={CustomCell} filter="date" />
Is it possible to have custom cells correctly formatted in the download?

