React

ReactJS Practical Questions - react element functi...

9.

What does this React element look like given the following function?

 React.createElement('h1', null, "What time is it?");

<h1></h1>

<h1 props={null}>"What time is it?"</h1>

<h1>null</h1>

<h1>What time is it?</h1>