Build: Greeting Screen
A simple screen that shows a greeting message and a button to change the greeting.
Target UI
--------------------- | Greeting Screen | |-------------------| | | | Hello, User! | | | | [Change Greeting] | | | ---------------------
Display a greeting message in a Text component.
Add a button labeled 'Change Greeting'.
When the button is pressed, the greeting message changes to 'Welcome to React Native!'.
Write a component test to verify the initial greeting text.
Write a component test to verify the greeting changes after button press.