({ title })
| 2 | import { Button, View } from 'react-native' |
| 3 | |
| 4 | function MyComponent({ title }) { |
| 5 | return ( |
| 6 | <View> |
| 7 | <Button title={title} color="#1ACDA5" /> |
| 8 | </View> |
| 9 | ) |
| 10 | } |
| 11 | |
| 12 | export default function App() { |
| 13 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected