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
This question is part of this quiz :
React tutorial Quiz 1