13 lines
310 B
JavaScript
13 lines
310 B
JavaScript
import { createPlugin } from '@fullcalendar/core/index.js';
|
|
import { BootstrapTheme } from './internal.js';
|
|
import '@fullcalendar/core/internal.js';
|
|
|
|
var index = createPlugin({
|
|
name: '@fullcalendar/bootstrap',
|
|
themeClasses: {
|
|
bootstrap: BootstrapTheme,
|
|
},
|
|
});
|
|
|
|
export { index as default };
|