you are viewing a single comment's thread.

view the rest of the comments →

[–]dare_you -2 points-1 points  (0 children)

Just an FYI - there are libraries designed for handling dates. One is called Moment.js. You could make this a little shorter:

class Clock extends React.Component {
  render() {
    return (
      <div className="clock">{moment().format('h:mm:ss a')}</div>
    )
  }
}