in fuse-ui-fabric/timePicker/timePicker.tsx [47:77]
public render(): JSX.Element {
return (
<div className={classNames().root}>
<TextField
className={classNames().text}
placeholder='hh'
type='number'
min={0}
max={this.maxHour}
step={1}
suffix='H'
value={`${this.displayHour}`}
onChanged={this.changeHour}
errorMessage={this._errorMessages.hour}
/>
<TextField
className={classNames().text}
placeholder='mm'
type='number'
min={0}
max={59}
step={1}
suffix='M'
value={`${this.props.time.minute}`}
onChanged={this.changeMinute}
errorMessage={this._errorMessages.minute}
/>
<NotationDropdown val={this.state.notation} change={this.changeNotation} enumType={TimeNotation} />
</div>
);
}