UNPKG

341 BJavaScriptView Raw
1import { __decorate } from "tslib";
2import { customElement } from 'lit/decorators.js';
3import { appYearGridName } from './constants.js';
4import { YearGrid } from './year-grid.js';
5let AppYearGrid = class AppYearGrid extends YearGrid {
6};
7AppYearGrid = __decorate([
8 customElement(appYearGridName)
9], AppYearGrid);
10export { AppYearGrid };