Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created August 1, 2017 22:08
Show Gist options
  • Save Kamilnaja/7c1b3a568d3c25c5fd980db1e03609e7 to your computer and use it in GitHub Desktop.
Save Kamilnaja/7c1b3a568d3c25c5fd980db1e03609e7 to your computer and use it in GitHub Desktop.
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