Required Props
interface DataEditorProps {
// ... other props
columns: readonly GridColumn[];
getCellContent: ((cell) => GridCell);
rows: number;
// ... other props
}columns
columns: readonly GridColumn[];rows
rows: number;getCellContent
Last updated