use react-big-calendar.js and moment.js
setLocalizer code
moment.locale('ko');
BigCalendar.setLocalizer(
BigCalendar.momentLocalizer(moment)
);
first day of the week is always Sunday
I want to see it from Monday.
The associated url.
https://github.com/intljusticemission/react-big-calendar/issues/28
But there is no example.
what should I do?
find answer
moment.locale('ko',{
week:{
dow : 1
}
});