Create a React component that displays a greeting message. The component should take a name prop and display the message 'Hello, {name}!'.
Example 1
Input: <Greeting name='John' />
Output: Hello, John!
The input is a React component that should display a greeting message.
Constraints
Hints
Create a React component that displays a greeting message. The component should take a name prop and display the message 'Hello, {name}!'.
Example 1
Input: <Greeting name='John' />
Output: Hello, John!
The input is a React component that should display a greeting message.
Constraints
Hints