import React, { type FC } from 'react' import type { TimePickerFooterProps } from '../types' import Button from '../../button' import { useTranslation } from 'react-i18next' const Footer: FC = ({ handleSelectCurrentTime, handleConfirm, }) => { const { t } = useTranslation() return (
{/* Now */} {/* Confirm Button */}
) } export default React.memo(Footer)