What will be the output of this React code?

Last Updated :
Discuss
Comments

What will be the output of this React code?
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