(storeOrStoreId: StoreOrStoreId | undefined)
| 144 | }; |
| 145 | |
| 146 | const useHasValueCallback = (storeOrStoreId: StoreOrStoreId | undefined) => { |
| 147 | const store = useStoreOrStoreById(storeOrStoreId); |
| 148 | return (valueId: Id) => store()?.hasValue(valueId) ?? false; |
| 149 | }; |
| 150 | |
| 151 | const Details = ( |
| 152 | props: { |
no test coverage detected
searching dependent graphs…