Created
June 12, 2019 14:42
-
-
Save ralfting/c8fab2d578da895a26ec0b23af76b3aa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Base className={className} isEmpty={!value} {...this.props} labelTag="b" tag="div"> | |
| <div className="pp-width-150"> | |
| <TimePicker | |
| className="pp-display-block " | |
| inputSize="md" | |
| value={value && moment.utc(value, ['hh:mm A', 'HH:mm'])} | |
| start={moment().startOf('day')} | |
| end={moment().endOf('day')} | |
| interval={30} | |
| locale={locale || DEFAULT_LOCALE} | |
| timezone="UTC" | |
| onChange={this.onChange} | |
| /> | |
| </div> | |
| </Base> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment