react-datetime + 在 React 中设置时间间隔

react-datetime + set interval in React

我正在为 npm 包使用 react-datetime 控件:click here。 在那个时间选择器中我应该如何设置间隔。例如,我想每 5 分钟设置一次间隔,所以首先显示 0,然后显示 5、10、15 等。我该如何实现?

我正在使用看起来像这样但不起作用:

timeConstraints 允许自定义步骤配置,因此,它应该如下所示:

  minutes: { step: 5 }

示例:

{
  timeConstraints = {
    minutes: {
      step: 5
    }
  }

  render() {

    return (
      <Datetime timeConstraints={this.timeConstraints} />
    );
  }
}