({ title, onIncrement })
| 2 | import { Button } from 'react-native' |
| 3 | |
| 4 | function CounterButton({ title, onIncrement }) { |
| 5 | return <Button title={title} onPress={onIncrement} /> |
| 6 | } |
| 7 | |
| 8 | export default function App() { |
| 9 | const [count, setCount] = useState(0) |
nothing calls this directly
no outgoing calls
no test coverage detected