progress on table columns

This commit is contained in:
jeffvli
2025-10-03 17:52:57 -07:00
parent 3f0536e780
commit 66cbcb5f94
10 changed files with 219 additions and 2 deletions
@@ -0,0 +1,8 @@
import {
ItemTableListInnerColumn,
TableColumnContainer,
} from '/@/renderer/components/item-list/item-table-list/item-table-list-column';
export const RowIndexColumn = (props: ItemTableListInnerColumn) => {
return <TableColumnContainer {...props}>{props.rowIndex + 1}</TableColumnContainer>;
};