Web technologies Questions | React.js Quiz | Set-3 | Question 1

Last Updated :
Discuss
Comments
What is the output of the below code snippets ?
import React from 'react';
import ReactDOM from 'react-dom';
const Component=()=>
{
        return <h1>This is Quiz Portal</h1>
}
 
ReactDOM.render(
    <Component />,
    document.getElementById("root")
);
Component
This is Quiz Portal
Error in code
None of the above
Share your thoughts in the comments