Build: Greeting Screen
This screen shows a greeting message using a child component that receives the user's name as a prop.
Target UI
--------------------- | Greeting Screen | |-------------------| | Hello, Alice! | | | ---------------------
Create a parent component named GreetingScreen.
Create a child component named GreetingMessage that accepts a 'name' prop.
GreetingMessage should display 'Hello, {name}!' using the passed prop.
GreetingScreen should pass the name 'Alice' to GreetingMessage.