aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/12hours.js
diff options
context:
space:
mode:
Diffstat (limited to 'examples/12hours.js')
-rw-r--r--examples/12hours.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/12hours.js b/examples/12hours.js
index 18fb626..44e514a 100644
--- a/examples/12hours.js
+++ b/examples/12hours.js
@@ -12,7 +12,7 @@ import TimePicker from 'rc-time-picker';
12const showSecond = false; 12const showSecond = false;
13const str = showSecond ? 'HH:mm:ss' : 'HH:mm'; 13const str = showSecond ? 'HH:mm:ss' : 'HH:mm';
14 14
15const now = moment().hour(14).minute(30); 15const now = moment().hour(0).minute(0);
16 16
17function onChange(value) { 17function onChange(value) {
18 console.log(value && value.format(str)); 18 console.log(value && value.format(str));
@@ -24,7 +24,7 @@ ReactDom.render(
24 defaultValue={now} 24 defaultValue={now}
25 className="xxx" 25 className="xxx"
26 onChange={onChange} 26 onChange={onChange}
27 show12Hours 27 use12Hours
28 />, 28 />,
29 document.getElementById('__react-content') 29 document.getElementById('__react-content')
30); 30);