mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 13:09:40 +08:00
8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
import TimepickerLocale from 'rc-time-picker/lib/locale/en_US';
|
|
import assign from 'object-assign';
|
|
const locale = assign({}, {
|
|
placeholder: 'Select a time',
|
|
}, TimepickerLocale);
|
|
|
|
export default locale;
|