Files
web/types/components/datepicker.ts
2024-09-27 17:51:27 +02:00

12 lines
244 B
TypeScript

import type { DateRange } from "react-day-picker"
export interface DatePickerFormProps {
name?: string
}
export interface DatePickerProps {
close: () => void
handleOnSelect: (selected: DateRange) => void
initialSelected?: DateRange
}