()
| 129 | }) |
| 130 | |
| 131 | function Mounted() { |
| 132 | const c = useContext(Context) |
| 133 | console.log(c) |
| 134 | return ( |
| 135 | <p |
| 136 | onClick={() => { |
| 137 | c.setCount(c.count + 1) |
| 138 | }} |
| 139 | > |
| 140 | {c.count} |
| 141 | <hr /> |
| 142 | </p> |
| 143 | ) |
| 144 | } |
| 145 | |
| 146 | function App() { |
| 147 | const [state, setState] = useState(1) |
nothing calls this directly
no outgoing calls
no test coverage detected