()
| 540 | |
| 541 | let startTransitionB; |
| 542 | function ActionB() { |
| 543 | const [isPending, start] = useTransition(); |
| 544 | startTransitionB = start; |
| 545 | return <Text text={'Pending B: ' + isPending} />; |
| 546 | } |
| 547 | |
| 548 | let startTransitionC; |
| 549 | function ActionC() { |
nothing calls this directly
no test coverage detected