mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
4026221d45
* deps: upgrade TimePicker * deps: upgrade DatePicker * deps: upgrade Calendar * fix: moment should work with LocaleProvider * feat: update API of TimePicker * feat: update Calendar's APIs * feat: update DatePicker's APIs * doc: update demo * revert: add dateString and timeString and so on * feat: add Calendar[defaultValue] * feat: add defaultPickerValue * docs: update docs about date picker * feat: set moment locale to zh-cn automatically
15 lines
344 B
TypeScript
15 lines
344 B
TypeScript
import React from 'react';
|
|
import CalendarLocale from 'rc-calendar/lib/locale/zh_CN';
|
|
import RcCalendar from 'rc-calendar';
|
|
|
|
export default class Calendar extends React.Component<any, any> {
|
|
static defaultProps = {
|
|
locale: CalendarLocale,
|
|
prefixCls: 'ant-calendar',
|
|
};
|
|
|
|
render() {
|
|
return <RcCalendar {...this.props} />;
|
|
}
|
|
}
|