()
| 13 | let outSetLock: (newLock: boolean) => void; |
| 14 | |
| 15 | const Component: React.FC<{}> = () => { |
| 16 | const [, setLock] = useLock(); |
| 17 | outSetLock = setLock; |
| 18 | return null; |
| 19 | }; |
| 20 | |
| 21 | const { unmount } = render(<Component />); |
| 22 |
nothing calls this directly
no test coverage detected
searching dependent graphs…