40
loading...
This website collects cookies to deliver better user experience
const root = document.getElementById("root");
const h2 = document.createElement("h2");
h2.innerText = "Hello, world!";
root.appendChild(h2);
const root = document.getElementById("root");
// Only using React.createElement
const element = React.createElement('div', null, [
React.createElement("h2", null, "Hello h2"),
React.createElement("h3", null, "Hello h3"),
]);
ReactDOM.render(element, root);
const root = document.getElementById("root");
// Using JSX
const element = <div>
<h2>Hello h2</h2>
<h3>Hello h3</h3>
</div>
ReactDOM.render(element, root);