/** * Copyright (C) Paul Sarando * Distributed under the Eclipse Public License (http://www.eclipse.org/legal/epl-v10.html). */ import React from "react"; import "../tolkien-calendars.css"; interface VerticalLayoutFillerProps { weekdays: Object[]; } const VerticalLayoutFiller = (props: VerticalLayoutFillerProps) => { const weekdays = props.weekdays.map(function (weekday, i) { return ; }); return {weekdays}; }; enum MonthLayoutEnum { VERTICAL = "vertical", HORIZONTAL = "horizontal", } export { MonthLayoutEnum, VerticalLayoutFiller };