i\'m using jQuery fullcalendar on a ReactJs component.
i have a on the render method
and on componentD
I was having the same issue, but for me it was not about moment.js.
I use node_modules and the loading sequence was like that :
require('fullcalendar');
require('fullcalendar-scheduler');
But, after more investigation, I found that fullcalendar-scheduler was already loading fullcalendar module, so I just had to keep the scheduler and all is working fine :
require('fullcalendar-scheduler');