Hi,
This seems like the most versatile calendar picker, but I could not see in the examples if it's possible to select a time range, only a date range. Is that correct? Thanks
+1
minDate={new Date(new Date().setHours(0, 0, 0, 0))}
maxDate={new Date(new Date().setHours(12, 0, 0, 0))}
the property above is of no effect. I want user can only select time betten 00:00 and 12:00.
minTime={new Date().setHours(0,0,0)}
maxTime={new Date().setHours(12,0,0)}
It should be ok.
minTime={new Date().setHours(0,0,0)}
maxTime={new Date().setHours(12,0,0)}

It's working, but:
Warning: Failed prop type: Invalid prop minTime of type Number supplied to DatePicker, expected instance of Date.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Most helpful comment
+1
the property above is of no effect. I want user can only select time betten 00:00 and 12:00.