How to make date format in German like: Fr.,17. Mai?
The sandbox example https://codesandbox.io/embed/hopeful-haibt-ruktp
How to make date format in German like: Fr.,17. Mai?
The sandbox example https://codesandbox.io/embed/hopeful-haibt-ruktp
moment does not come loaded with all possible language files. It only loads one language without configuration, and that language is english.
You have to import the language file and set the locale on an instance of moment. You also have to add moment as a prop to the MuiPickersUtilsProvider as well as the locale:
import moment from 'moment';
import 'moment/locale/de';
moment.locale('de');
<MuiPickersUtilsProvider utils={MomentUtils} locale="de" moment={moment} />