()
| 149 | console.log('Received test event:', event) |
| 150 | }) |
| 151 | |
| 152 | function Mounted() { |
| 153 | const c = useContext(Context) |
| 154 | console.log(c) |
| 155 | return ( |
| 156 | <p |
| 157 | onClick={() => { |
| 158 | c.setCount(c.count + 1) |
| 159 | }} |
| 160 | > |
| 161 | {c.count} |
| 162 | <hr /> |
| 163 | </p> |
| 164 | ) |
| 165 | } |
| 166 | |
| 167 | function App() { |
nothing calls this directly
no outgoing calls
no test coverage detected