Created
January 30, 2018 21:43
-
-
Save aerrity/696f38beed19a22b3c51cb54e282aab3 to your computer and use it in GitHub Desktop.
React clock tick example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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