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.
18 lines
305 B
18 lines
305 B
function tick() {
|
|
const element = (
|
|
<div>
|
|
<h1>Hello, world!</h1>
|
|
<h2>
|
|
It is{' '}
|
|
{new Date().toLocaleTimeString()}.
|
|
</h2>
|
|
</div>
|
|
);
|
|
// highlight-range{1-4}
|
|
ReactDOM.render(
|
|
element,
|
|
document.getElementById('root')
|
|
);
|
|
}
|
|
|
|
setInterval(tick, 1000);
|
|
|