You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
298 B
16 lines
298 B
const root = ReactDOM.createRoot(
|
|
document.getElementById('root')
|
|
);
|
|
|
|
function tick() {
|
|
const element = (
|
|
<div>
|
|
<h1>Hello, world!</h1>
|
|
<h2>It is {new Date().toLocaleTimeString()}.</h2>
|
|
</div>
|
|
);
|
|
// highlight-next-line
|
|
root.render(element);
|
|
}
|
|
|
|
setInterval(tick, 1000);
|
|
|