DashboardDataTableDisplayComponent
DashboardDataTableDisplayComponent
Allows you to define custom display components for specific columns in data tables. The pageId is already defined in the data table extension, so only the column name is needed.
Signature
interface DashboardDataTableDisplayComponent {
column: string;
component: React.ComponentType<{ value: any; [key: string]: any }>;
}