I have to format the date to DD-MMM-YYYY
format. I Am using reactjs. The date is formatted in IE
but not in Google Chrome
. Please suggest.
<input name="requested_order_ship_date" type="date"
disabled={ this.state.mode }
value={ moment(this.state.item.requested_order_ship_date).format("DD-MMM-YYYY") }
className="form-control" onChange={ this.handleInputChange } />