DocSpace-buildtools/packages/components/calendar/sub-components/MonthsBody.js
2023-02-02 16:39:48 +05:00

10 lines
388 B
JavaScript

import { MonthsContainer } from "../styled-components/MonthsContainer";
import { getCalendarMonths, getMonthElements } from "../utils";
export const MonthsBody = ({ selectedDate, setSelectedDate }) => {
const months = getCalendarMonths(selectedDate);
const monthsElements = getMonthElements(months, setSelectedDate);
return <MonthsContainer>{monthsElements}</MonthsContainer>;
};