()
| 1255 | async () => { |
| 1256 | let startTransition; |
| 1257 | function Updater() { |
| 1258 | const [isPending, _start] = useTransition(); |
| 1259 | startTransition = _start; |
| 1260 | return ( |
| 1261 | <span> |
| 1262 | <Text text={'Pending: ' + isPending} /> |
| 1263 | </span> |
| 1264 | ); |
| 1265 | } |
| 1266 | |
| 1267 | let setText; |
| 1268 | let setOptimisticText; |
nothing calls this directly
no test coverage detected