UNPKG

@shinyongjun/react-datepicker

Version:
11 lines (10 loc) 391 B
import { ITimePicker, ITimeValue } from '../../types/props'; interface IProps { value: Date | null; timeKey: keyof ITimePicker; items: number[]; timeValue: ITimeValue; onChange?: (newValue: Date | null) => void; } export default function TimePickerSelectorList({ value, timeKey, items, timeValue, onChange, }: IProps): import("react/jsx-runtime").JSX.Element; export {};