Created
August 1, 2017 22:08
-
-
Save Kamilnaja/7c1b3a568d3c25c5fd980db1e03609e7 to your computer and use it in GitHub Desktop.
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
var TimerExample = React.createClass({ | |
getInitialState: function () { | |
return {elapsed: 0} | |
}, | |
componentDidMount: function () { | |
this.timer = setInterval(this.tick, 50); | |
}, | |
componentWillUnmount: function() { | |
clearInterval(this.timer); | |
}, | |
tick: function () { | |
this.setState({elapsed: new Date() - this.props.start} | |
); | |
}, | |
render: function () { | |
var elapsed = Math.round(this.state.elapsed / 100); | |
var seconds = (elapsed / 10).toFixed(1); | |
return <p>{seconds}</p> | |
} | |
}); | |
ReactDOM.render( | |
<TimerExample start={Date.now()}/>, | |
document.getElementById('container') | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment