export interface DateInputProps {
  className?: string
  label: string 
  dateSelected: Date 
  onChange: Function
  dateFormat: string
  showTimeSelect?: boolean
  timeFormat?: string
  disabled?: boolean
}

export interface ContainerStyles {
  
}