UNPKG

react-calendar

Version:

Ultimate calendar for your React app.

20 lines (19 loc) 694 B
var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; import React from 'react'; import Months from './YearView/Months'; export default function YearView(props) { function renderMonths() { return React.createElement(Months, __assign({}, props)); } return React.createElement("div", { className: "react-calendar__year-view" }, renderMonths()); }