ALawliet
Results
1
comments of
ALawliet
``` onDateChange={date => this.setState({ birth_date: new Date(date) }) } ``` to ``` onDateChange={date => this.setState({ birth_date: moment(date) }) } ``` did the trick for me.