React | Introduction To React | Question 9

Last Updated :
Discuss
Comments

What will be the output of this React code?

JavaScript
import React from 'react';
import ReactDOM from 'react-dom';
function App() {
    const greeting = "Hello";
    return <h1>{greeting} World</h1>;
}
ReactDOM.render(<App />, document.getElementById('root'));

Hello World

{greeting} World

"Hello World"

Error

Share your thoughts in the comments