Add react editor and pass column headers

This commit is contained in:
Laurent Nguyen
2024-03-20 11:15:25 +01:00
parent 6f7c8f2a20
commit 8c1a89403a
2 changed files with 29 additions and 3 deletions

View File

@@ -11,6 +11,10 @@ export interface IDocumentsTableComponentProps {
items: DocumentsTableComponentItem[];
onSelectedItem: (index: number) => void;
size: { height: number; width: number };
columnHeaders: {
idHeader: string;
partitionKeyHeader: string;
};
style?: React.CSSProperties;
}