()
| 96 | 'final value instead', |
| 97 | async () => { |
| 98 | function Content() { |
| 99 | const isInitial = useDeferredValue(false, true); |
| 100 | if (isInitial) { |
| 101 | React.unstable_postpone(); |
| 102 | } |
| 103 | return <Text text="Final" />; |
| 104 | } |
| 105 | |
| 106 | function App() { |
| 107 | return ( |
nothing calls this directly
no test coverage detected