()
| 90 | } |
| 91 | |
| 92 | function useInnerBar() { |
| 93 | useDebugValue({ |
| 94 | debugA: { |
| 95 | debugB: { |
| 96 | debugC: 'abc', |
| 97 | }, |
| 98 | }, |
| 99 | }); |
| 100 | const [count] = useState(123); |
| 101 | return count; |
| 102 | } |
| 103 | |
| 104 | function useOuterBaz() { |
| 105 | return useInnerBaz(); |
no test coverage detected