1.0.3 • Published 4 years ago
@zackjones11/react-hook-datepicker v1.0.3
React Hook Date Picker (work in progress)
npm install @zackjones11/react-hook-datepicker --saveuseDatePicker
const [selectedDate, setSelectedDate] = React.useState<Date | undefined>();
const {
calendar,
getDateProps,
getPrevMonthButtonProps,
getNextMonthButtonProps,
} = useDatePicker({ value: selectedDate, onChange: setSelectedDate });useDateRangePicker
const {
selectedRange,
calendars,
getDateProps,
getPrevMonthButtonProps,
getNextMonthButtonProps,
} = useDateRangePicker();Check ./examples for detailed usage