(e: any)
| 12 | const [isPending, startTransition] = React.useTransition() |
| 13 | |
| 14 | const handleClick = (e: any) => { |
| 15 | startTransition(() => { |
| 16 | onClick(e) |
| 17 | }) |
| 18 | } |
| 19 | |
| 20 | return ( |
| 21 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected