diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/12hours.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/12hours.js b/examples/12hours.js index 44e514a..16e428d 100644 --- a/examples/12hours.js +++ b/examples/12hours.js | |||
@@ -10,7 +10,7 @@ import moment from 'moment'; | |||
10 | import TimePicker from 'rc-time-picker'; | 10 | import TimePicker from 'rc-time-picker'; |
11 | 11 | ||
12 | const showSecond = false; | 12 | const showSecond = false; |
13 | const str = showSecond ? 'HH:mm:ss' : 'HH:mm'; | 13 | const str = showSecond ? 'h:mm a' : 'h:mm a'; |
14 | 14 | ||
15 | const now = moment().hour(0).minute(0); | 15 | const now = moment().hour(0).minute(0); |
16 | 16 | ||
@@ -24,6 +24,7 @@ ReactDom.render( | |||
24 | defaultValue={now} | 24 | defaultValue={now} |
25 | className="xxx" | 25 | className="xxx" |
26 | onChange={onChange} | 26 | onChange={onChange} |
27 | format={str} | ||
27 | use12Hours | 28 | use12Hours |
28 | />, | 29 | />, |
29 | document.getElementById('__react-content') | 30 | document.getElementById('__react-content') |