diff options
author | afc163 <afc163@gmail.com> | 2016-11-11 12:10:26 +0800 |
---|---|---|
committer | afc163 <afc163@gmail.com> | 2016-11-11 12:10:26 +0800 |
commit | 614f6c90232d890984d0f4f2f13ff41fdb144b27 (patch) | |
tree | ce1a9be06b3264fd9fc09b3c2b028646db03a322 /src/mixin/CommonMixin.js | |
parent | cb5a445c75c7117c7c705d615099086274c2b254 (diff) | |
parent | f429b4a79df25c9eadc3901e2483716835cc7de7 (diff) | |
download | time-picker-614f6c90232d890984d0f4f2f13ff41fdb144b27.tar.gz time-picker-614f6c90232d890984d0f4f2f13ff41fdb144b27.tar.zst time-picker-614f6c90232d890984d0f4f2f13ff41fdb144b27.zip |
Merge branch 'master' of github.com:react-component/time-picker
Diffstat (limited to 'src/mixin/CommonMixin.js')
-rw-r--r-- | src/mixin/CommonMixin.js | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/mixin/CommonMixin.js b/src/mixin/CommonMixin.js deleted file mode 100644 index a6893b8..0000000 --- a/src/mixin/CommonMixin.js +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | import {PropTypes} from 'react'; | ||
2 | import enUs from '../locale/en_US'; | ||
3 | |||
4 | export default { | ||
5 | propTypes: { | ||
6 | prefixCls: PropTypes.string, | ||
7 | locale: PropTypes.object, | ||
8 | }, | ||
9 | |||
10 | getDefaultProps() { | ||
11 | return { | ||
12 | prefixCls: 'rc-time-picker', | ||
13 | locale: enUs, | ||
14 | }; | ||
15 | }, | ||
16 | }; | ||