mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-22 03:42:14 +00:00
13 lines
263 B
JavaScript
13 lines
263 B
JavaScript
function tick() {
|
|
const element = (
|
|
<div>
|
|
<h1>Hello, world!</h1>
|
|
<h2>It is {new Date().toLocaleTimeString()}.</h2>
|
|
</div>
|
|
);
|
|
// highlight-next-line
|
|
ReactDOM.render(element, document.getElementById('root'));
|
|
}
|
|
|
|
setInterval(tick, 1000);
|