()
| 171 | const div = React.createRef(null); |
| 172 | |
| 173 | function App() { |
| 174 | return ( |
| 175 | <div ref={div}> |
| 176 | <AsyncText text="Shell" /> |
| 177 | </div> |
| 178 | ); |
| 179 | } |
| 180 | |
| 181 | // Server render |
| 182 | await resolveText('Shell'); |
nothing calls this directly
no test coverage detected