mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 10:49:36 +02:00
14 lines
460 B
JavaScript
14 lines
460 B
JavaScript
import { createPlugin } from '@fullcalendar/core/index.js';
|
|
import premiumCommonPlugin from '@fullcalendar/premium-common/index.js';
|
|
import { ScrollGrid } from './internal.js';
|
|
import '@fullcalendar/core/internal.js';
|
|
import '@fullcalendar/core/preact.js';
|
|
|
|
var index = createPlugin({
|
|
name: '@fullcalendar/scrollgrid',
|
|
premiumReleaseDate: '2024-07-12',
|
|
deps: [premiumCommonPlugin],
|
|
scrollGridImpl: ScrollGrid,
|
|
});
|
|
|
|
export { index as default };
|