aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/12hours.js
diff options
context:
space:
mode:
Diffstat (limited to 'examples/12hours.js')
-rw-r--r--examples/12hours.js3
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';
10import TimePicker from 'rc-time-picker'; 10import TimePicker from 'rc-time-picker';
11 11
12const showSecond = false; 12const showSecond = false;
13const str = showSecond ? 'HH:mm:ss' : 'HH:mm'; 13const str = showSecond ? 'h:mm a' : 'h:mm a';
14 14
15const now = moment().hour(0).minute(0); 15const 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')