({ navigation }: Screen1Props)
| 1 | const Screen1 = ({ navigation }: Screen1Props) => { |
| 2 | return ( |
| 3 | <Button |
| 4 | onPress={() => { |
| 5 | navigation.push('Screen2', { paramA: 'Hello!' }) |
| 6 | }} |
| 7 | /> |
| 8 | ) |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected