2021-10-03 09:58:17 +08:00

16 lines
944 B
JavaScript

import CalendarBackground from './calendar-background/calendar-background.js';
import CalendarLegend from './calendar-legend/calendar-legend.js';
import CalendarMonth from './calendar-month/calendar-month.js';
import CalendarNavigation from './calendar-navigation/calendar-navigation.js';
import CalendarShowPreferences from './calendar-show-preferences/calendar-show-preferences.js';
import CalendarToday from './calendar-today/calendar-today.js';
import CalendarView from './calendar-view/calendar-view.js';
customElements.define('calendar-background', CalendarBackground);
customElements.define('calendar-legend', CalendarLegend);
customElements.define('calendar-month', CalendarMonth);
customElements.define('calendar-navigation', CalendarNavigation);
customElements.define('calendar-show-preferences', CalendarShowPreferences);
customElements.define('calendar-today', CalendarToday);
customElements.define('calendar-view', CalendarView);