import GeckoCalendar from "./"; import { $html, $each, $if } from "ekma"; import * as moment from "moment"; import Header from "./Header"; import Body from "./Body"; import EventSummary from "./EventSummary"; export default (calendar: GeckoCalendar) => $html`
${ calendar.getChild(Header, "$") } ${ calendar.getChild(Body, "$") }
${ calendar.getChild(EventSummary, "$") } `;