({
tableId,
store,
editable,
customCells,
extraCellsBefore,
extraCellsAfter,
...props
}: TableInHtmlTableProps & HtmlTableProps)
| 14 | import {EditableCellView} from './EditableCellView.tsx'; |
| 15 | |
| 16 | export const TableInHtmlTable: typeof TableInHtmlTableDecl = ({ |
| 17 | tableId, |
| 18 | store, |
| 19 | editable, |
| 20 | customCells, |
| 21 | extraCellsBefore, |
| 22 | extraCellsAfter, |
| 23 | ...props |
| 24 | }: TableInHtmlTableProps & HtmlTableProps): any => ( |
| 25 | <HtmlTable |
| 26 | {...props} |
| 27 | params={useParams( |
| 28 | useCells( |
| 29 | useTableCellIds(tableId, store), |
| 30 | customCells, |
| 31 | editable ? EditableCellView : CellView, |
| 32 | ), |
| 33 | useStoreCellComponentProps(store, tableId), |
| 34 | useRowIds(tableId, store), |
| 35 | extraCellsBefore, |
| 36 | extraCellsAfter, |
| 37 | )} |
| 38 | /> |
| 39 | ); |
nothing calls this directly
no test coverage detected
searching dependent graphs…