Question from the React ⚛️ test

Write a React component that renders a simple h1 element

Easy

These two codes are equivalent

ReactDOM.render(
    React.createElement('h1', null, 'Hello, World!'),
    document.getElementById('root')
);
ReactDOM.render(<h1>Hello, world!</h1>, document.getElementById('root'));
Author: W3D TeamStatus: Published(Update)Question passed 712 times
Edit
1
Community EvaluationsNo one has reviewed this question yet, be the first!