(context: ReactContext<T>)
| 4020 | return mountCallback(callback, deps); |
| 4021 | }, |
| 4022 | useContext<T>(context: ReactContext<T>): T { |
| 4023 | currentHookNameInDev = 'useContext'; |
| 4024 | mountHookTypesDev(); |
| 4025 | return readContext(context); |
| 4026 | }, |
| 4027 | useEffect( |
| 4028 | create: () => (() => void) | void, |
| 4029 | deps: Array<mixed> | void | null, |