You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
374 B

---
order: 0
title:
zh-CN: 基本
en-US: Basic
---
## zh-CN
9 years ago
一个通用的日历面板,支持年/月切换。
## en-US
A basic calendar component with Year/Month switch.
````jsx
import { Calendar } from 'antd';
9 years ago
function onPanelChange(value, mode) {
console.log(value, mode);
9 years ago
}
ReactDOM.render(
9 years ago
<Calendar onPanelChange={onPanelChange} />
, mountNode);
````