React

ReactJS Practical Questions - Ellement will be ren...

18.

What type of element will be rendered from the following code?

const element = (
  <div>
    <h1>Hello</h1>
    <p>How are you?</p>
  </div>
);
ReactDOM.render(element, document.getElementById('root'));

<div>

<h1>

<p>

<span>