(value: T, initialValue?: T)
| 176 | } |
| 177 | |
| 178 | export function useDeferredValue<T>(value: T, initialValue?: T): T { |
| 179 | const dispatcher = resolveDispatcher(); |
| 180 | return dispatcher.useDeferredValue(value, initialValue); |
| 181 | } |
| 182 | |
| 183 | export function useId(): string { |
| 184 | const dispatcher = resolveDispatcher(); |