Skip to content

Instantly share code, notes, and snippets.

@nadeesha
Last active February 9, 2019 23:57
Show Gist options
  • Save nadeesha/a18b35a7b5e7df65426de9b40e4e0faf to your computer and use it in GitHub Desktop.
Save nadeesha/a18b35a7b5e7df65426de9b40e4e0faf to your computer and use it in GitHub Desktop.
class LiveDate extends React.Component {
componentDidMount() {
// update state every second with
// the current time
setInterval(() => {
this.setState({
liveDate: new Date().toISOString(),
});
}, 1000);
}
render () {
return this.props.children({
date: this.state.liveDate || "loading..."
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment