| 8 | import { Popover, PopoverContent, PopoverTrigger } from './popover'; |
| 9 | |
| 10 | interface DateRangePickerProps { |
| 11 | startDate: string | null | undefined; |
| 12 | endDate: string | null | undefined; |
| 13 | onStartDateChange: (date: string) => void; |
| 14 | onEndDateChange: (date: string) => void; |
| 15 | className?: string; |
| 16 | } |
| 17 | |
| 18 | export function DateRangePicker({ |
| 19 | startDate, |
nothing calls this directly
no outgoing calls
no test coverage detected