What will be the output of the following code?
const Greeting = (props) => {
return <h1>Hello, {props.name}!</h1>;
};
<Greeting name="Sandeep" />
Hello, Sandeep!
Hello, undefined!
Greeting: Sandeep
Error: props is not defined
This question is part of this quiz :
Functional Components