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