import type { FC } from 'react' import React from 'react' import Button from '../../button' import type { YearAndMonthPickerFooterProps } from '../types' import { useTranslation } from 'react-i18next' const Footer: FC = ({ handleYearMonthCancel, handleYearMonthConfirm, }) => { const { t } = useTranslation() return (
) } export default React.memo(Footer)