(initialValue: T)
| 4089 | } |
| 4090 | }, |
| 4091 | useRef<T>(initialValue: T): {current: T} { |
| 4092 | currentHookNameInDev = 'useRef'; |
| 4093 | mountHookTypesDev(); |
| 4094 | return mountRef(initialValue); |
| 4095 | }, |
| 4096 | useState<S>( |
| 4097 | initialState: (() => S) | S, |
| 4098 | ): [S, Dispatch<BasicStateAction<S>>] { |
no outgoing calls