import React from 'react'; import DateRangeDropdown from 'Shared/DateRangeDropdown'; function DateRange(props) { const { direction = 'left', startDate, endDate, rangeValue, className, onDateChange, customRangeRight = false, customHidden = false, } = props; return ( ); } export default DateRange;