(usable: Usable<T>)
| 4688 | return readContext(context); |
| 4689 | }, |
| 4690 | use<T>(usable: Usable<T>): T { |
| 4691 | warnInvalidHookAccess(); |
| 4692 | return use(usable); |
| 4693 | }, |
| 4694 | useCallback<T>(callback: T, deps: Array<mixed> | void | null): T { |
| 4695 | currentHookNameInDev = 'useCallback'; |
| 4696 | warnInvalidHookAccess(); |
no outgoing calls