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 (