( tableId: Id, rowId: Id, cellId: Id, storeOrStoreId?: StoreOrStoreId, )
| 828 | ]); |
| 829 | |
| 830 | export const useCell: typeof useCellDecl = ( |
| 831 | tableId: Id, |
| 832 | rowId: Id, |
| 833 | cellId: Id, |
| 834 | storeOrStoreId?: StoreOrStoreId, |
| 835 | ): CellOrUndefined => |
| 836 | useListenable( |
| 837 | CELL, |
| 838 | useStoreOrStoreById(storeOrStoreId), |
| 839 | ReturnType.CellOrValue, |
| 840 | [tableId, rowId, cellId], |
| 841 | ); |
| 842 | |
| 843 | export const useCellState: typeof useCellStateDecl = ( |
| 844 | tableId: Id, |
searching dependent graphs…