@shinyongjun/react-datepicker
Version:
DatePicker component in React App.
11 lines (10 loc) • 391 B
TypeScript
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 {};