(props)
| 243 | ); |
| 244 | }; |
| 245 | var CellView = (props) => { |
| 246 | const cell = useCell( |
| 247 | () => props.tableId, |
| 248 | () => props.rowId, |
| 249 | () => props.cellId, |
| 250 | () => props.store |
| 251 | ); |
| 252 | return memo( |
| 253 | () => wrap( |
| 254 | EMPTY_STRING + (getValue(cell) ?? EMPTY_STRING), |
| 255 | void 0, |
| 256 | props.debugIds, |
| 257 | props.cellId |
| 258 | ) |
| 259 | ); |
| 260 | }; |
| 261 | var getUseCheckpointView = (getCheckpoints) => (props) => { |
| 262 | const resolvedCheckpoints = useCheckpointsOrCheckpointsById( |
| 263 | () => props.checkpoints |