Build: Greeting Screen
This screen shows a personalized greeting message using interpolation to insert the user's name dynamically.
Target UI
------------------------- | Greeting App | |-----------------------| | | | Hello, [Name]! | | | |-----------------------|
Display a greeting message that says 'Hello, [Name]!' where [Name] is a variable.
Use React Native Text component with interpolation to show the name.
The name should be stored in a state variable initialized to 'Friend'.