Skip to content

Instantly share code, notes, and snippets.

@aerrity
Created January 30, 2018 21:43
Show Gist options
  • Save aerrity/696f38beed19a22b3c51cb54e282aab3 to your computer and use it in GitHub Desktop.
Save aerrity/696f38beed19a22b3c51cb54e282aab3 to your computer and use it in GitHub Desktop.
React clock tick example
import React from 'react';
import ReactDOM from 'react-dom';
function tick() {
const element = (
<div>
<h1>Hello, world!</h1>
<h2>It is {new Date().toLocaleTimeString()}.</h2>
</div>
);
ReactDOM.render(
element,
document.getElementById('root')
);
}
setInterval(tick, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment