![]() |
VOOZH | about |
Question 1
import React from 'react';
import ReactDOM from 'react-dom';
const Component=()=>
{
return <h1>This is Quiz Portal</h1>
}
ReactDOM.render(
<Component />,
document.getElementById("root")
);Question 2
Question 3
Question 4
Question 5
Question 6
class date extends React.Component {
render() {
return <h1>Todays Date is : {this.props.date}</h1>;
}
}Question 7
Question 8
Question 9
Question 10
There are 15 questions to complete.