import React from 'react'; import ReactDOM from 'react-dom'; const Component=()=> { return <h1>This is Quiz Portal</h1> } ReactDOM.render( <Component />, document.getElementById("root") );
This question is part of this quiz :