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