wangzuo / input-moment

React datetime picker powered by momentjs
https://wangzuo.github.io/input-moment
ISC License
527 stars 173 forks source link

Jump to todays date #63

Closed yarnball closed 7 years ago

yarnball commented 7 years ago

Hi, great work on this.

I found a quick way to jump to todays' date. Handy feature I think!

  todayDate(m) {
    this.setState({ m:moment() });
  }
<button onClick={this.todayDate.bind(this)}>today</button>