import React from 'react' class Clock extends React.Component { constructor(props) { super(props) this.state = { time: new Date() } setInterval(this.tick.bind(this), 1000); } render() { return (
Time: { this.state.time.toString() }
) } tick() { this.setState({ time: new Date() }); } } export default Clock