Здравствуйте, ребята, я пытаюсь изменить мой <DateRangePicker/>
на немецкий язык.Что я не так делаю?Кто-нибудь может мне помочь.
render(){
moment.locale('de')
return(
<DateRangePicker
startDate={this.state.startDate} // momentPropTypes.momentObj or null,
endDate={this.state.endDate} // momentPropTypes.momentObj or null,
onDatesChange={({ startDate, endDate }) => {
this.setState({ endDate, startDate,
startDateString: startDateString,
endDateString: endDateString})}} // PropTypes.func.isRequired,
focusedInput={this.state.focusedInput} // PropTypes.oneOf([START_DATE, END_DATE]) or null,
onFocusChange={focusedInput => this.setState({ focusedInput }) } // PropTypes.func.isRequired,
endDatePlaceholderText={"Bis"}
startDatePlaceholderText={"Ab"}
displayFormat={"DD/MM/YYYY"}
showDefaultInputIcon={false}
/>
)
}