So assuming a have a Grid with a custom cell override like so:
<Grid
{...props}
cells={hidden? { data: HiddenCell } : cells}
data={hidden? loadingData : data}
></Grid>
and the Grid has columns where one column has a custom cell as well
<GridColumn
{...props}
cells={{ data: CustomCell }}
></GridColumn>
Is there a way to set the grid so that the custom cell on the Grid overrides the custom cell on the Column?