(offset: number)
| 56 | } |
| 57 | }; |
| 58 | const handleChangeOffset = (offset: number) => { |
| 59 | const [currentCellId, currentDescending] = sortAndOffset(); |
| 60 | setStateAndChange([currentCellId, currentDescending, offset]); |
| 61 | }; |
| 62 | const paginatorComponent = createMemo(() => { |
| 63 | const resolvedPaginator = getValue(paginator); |
| 64 | const [_, __, currentOffset] = sortAndOffset(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…