0

我正在为日期时间选择器使用 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

4

1 回答 1

0

你试过了dateFormat={false}吗?

<Datetime
dateFormat={false}
.
.
于 2021-11-19T15:49:59.747 回答