mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-22 20:01:57 +00:00
6 lines
132 B
JavaScript
6 lines
132 B
JavaScript
const element = <h1>Hello, world!</h1>;
|
|
const container = document.getElementById(
|
|
'root'
|
|
);
|
|
ReactDOM.render(element, container);
|