()
| 11 | import Extra from './Extra' |
| 12 | |
| 13 | function Counter() { |
| 14 | const [counter, setCounter] = useState(0) |
| 15 | return <Button title={counter.toString()} onPress={() => setCounter((i) => i + 1)} /> |
| 16 | } |
| 17 | |
| 18 | export default function App() { |
| 19 | const mode = useDarkModeContext() |
nothing calls this directly
no outgoing calls
no test coverage detected