MCPcopy
hub / github.com/Nutlope/self.so / DateRangePickerProps

Interface DateRangePickerProps

components/ui/date-range-picker.tsx:10–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8import { Popover, PopoverContent, PopoverTrigger } from './popover';
9
10interface 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
18export function DateRangePicker({
19 startDate,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected