- {innerProps.timeText && (
-
{innerProps.timeText}
- )}
-
-
- {innerProps.event.title || }
-
-
-
- )
-}
diff --git a/fullcalendar-main/packages/core/src/common/TableDateCell.tsx b/fullcalendar-main/packages/core/src/common/TableDateCell.tsx
deleted file mode 100644
index f95f656..0000000
--- a/fullcalendar-main/packages/core/src/common/TableDateCell.tsx
+++ /dev/null
@@ -1,88 +0,0 @@
-import { DateRange } from '../datelib/date-range.js'
-import { getDayClassNames, getDateMeta } from '../component/date-rendering.js'
-import { DateMarker } from '../datelib/marker.js'
-import { createElement } from '../preact.js'
-import { DateFormatter } from '../datelib/DateFormatter.js'
-import { formatDayString } from '../datelib/formatting-utils.js'
-import { BaseComponent } from '../vdom-util.js'
-import { buildNavLinkAttrs } from './nav-link.js'
-import { DateProfile } from '../DateProfileGenerator.js'
-import { DayHeaderContentArg } from '../render-hook-misc.js'
-import { Dictionary } from '../options.js'
-import { CLASS_NAME, renderInner } from './table-cell-util.js'
-import { ContentContainer } from '../content-inject/ContentContainer.js'
-
-export interface TableDateCellProps {
- date: DateMarker
- dateProfile: DateProfile
- todayRange: DateRange
- colCnt: number
- dayHeaderFormat: DateFormatter
- colSpan?: number
- isSticky?: boolean // TODO: get this outta here somehow
- extraDataAttrs?: Dictionary
- extraRenderProps?: Dictionary
-}
-
-// BAD name for this class now. used in the Header
-export class TableDateCell extends BaseComponent