blob: 835e1e1407885ef43f062e1248a2341d018f34c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* eslint no-console:0 */
import 'rc-time-picker/assets/index.less';
import React from 'react';
import ReactDom from 'react-dom';
import moment from 'moment';
import TimePicker from 'rc-time-picker';
const showSecond = true;
const str = showSecond ? 'HH:mm:ss' : 'HH:mm';
function onChange(value) {
console.log(value && value.format(str));
}
ReactDom.render(
<TimePicker
style={{ width: 100 }}
showSecond={showSecond}
defaultValue={moment()}
className="xxx"
onChange={onChange}
/>,
document.getElementById('__react-content')
);
|