Renamed EventGroupingHtmlRenderer to make it simpler (HtmlRenderer)

This commit is contained in:
Franco Speziali 2022-04-24 22:14:28 +02:00
parent da62052e79
commit e860fcbf79
10 changed files with 1 additions and 5 deletions

View File

@ -1,11 +1,7 @@
import { GroupTypes } from "../types"; import { GroupTypes } from "../types";
import Events from "../Events/"; import Events from "../Events/";
import { DayGrouping, WeekGrouping, MonthGrouping } from "../EventGrouping"; import { DayGrouping, WeekGrouping, MonthGrouping } from "../EventGrouping";
import { import { DayRenderer, WeekRenderer, MonthRenderer } from "../HtmlRenderer";
DayRenderer,
WeekRenderer,
MonthRenderer,
} from "../EventGroupingHtmlRenderer";
export default class Calendar { export default class Calendar {
public readonly jsonContent: object; public readonly jsonContent: object;