( create: () => Store, createDeps: DependencyList = EMPTY_ARRAY, // eslint-disable-next-line react-hooks/exhaustive-deps )
| 614 | // --- |
| 615 | |
| 616 | export const useCreateStore: typeof useCreateStoreDecl = ( |
| 617 | create: () => Store, |
| 618 | createDeps: DependencyList = EMPTY_ARRAY, |
| 619 | // eslint-disable-next-line react-hooks/exhaustive-deps |
| 620 | ): Store => useMemo(create, createDeps); |
| 621 | |
| 622 | export const useStoreIds: typeof useStoreIdsDecl = () => |
| 623 | useThingIds(OFFSET_STORE); |
no outgoing calls
searching dependent graphs…