Problems

React Component

EasyReact0% acceptance

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

  • The component should take a `name` prop
  • The component should display the message 'Hello, {name}!'

Hints

React component