我正在为日期时间选择器使用 react-datetime
但现在我只寻找时间选择器
目前我将其用作:
<Datetime
inputProps={{
placeholder: "HH:mm",
style: { height: "100%" }
}}
viewMode="time"
timeConstraints={{
hours: { min: 0, max: 6 },
minutes: { step: 15 }
}}
/>
但是我怎样才能只显示时间选择器
我目前正在使用以下