import { connect } from 'react-redux'; 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