Reputation: 1339
I'm using Datepicker of Material UI. Problem is the Datepicker interface : it's in English, and I want a french interface.
So this is my code :
<DatePicker floatingLabelText="Data de début" onChange={this.onChangeDateDebut} formatDate={this.formatDate} locale="fr"/>
And the interface stays in English :
How can I change this ?
Thank you
Upvotes: 3
Views: 4526
Reputation: 1153
Add the ff props to the date picker component
DateTimeFormat={Intl.DateTimeFormat} locale='fr'
Upvotes: 5