import { ChevronRightIcon } from '@heroicons/react/20/solid' import { useTranslation } from 'next-i18next' import { enUS } from 'date-fns/locale' import { DateRangePicker } from 'react-nice-dates' import Label from './Label' const MangoDateRangePicker = ({ startDate, setStartDate, endDate, setEndDate, }: { startDate: Date | null setStartDate: any endDate: Date | null setEndDate: any }) => { const { t } = useTranslation('common') return ( {({ startDateInputProps, endDateInputProps }) => (
)}
) } export default MangoDateRangePicker