Reactjs:如何创建时间选择器

Reactjs: How to create a time picker

我正在为日期时间选择器使用 react-datetime

但现在我只在寻找时间选择器

目前我将其用作:

                  <Datetime
                    inputProps={{
                      placeholder: "HH:mm",
                      style: { height: "100%" }
                    }}
                    viewMode="time"
                    timeConstraints={{
                      hours: { min: 0, max: 6 },
                      minutes: { step: 15 }
                    }}
                  />

但是我怎样才能只显示时间选择器

我目前正在使用以下

https://codesandbox.io/s/relaxed-varahamihira-mo576

你试过了吗dateFormat={false}

<Datetime
dateFormat={false}
.
.