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.

22 lines
369 B

10 years ago
# 基本用法
- order: 0
简单的 checkbox。
---
````jsx
import { Checkbox } from 'antd';
const container = document.getElementById('components-checkbox-demo-basic');
9 years ago
function onChange(e) {
console.log('checked = ' + e.target.checked);
10 years ago
}
9 years ago
ReactDOM.render(<label>
<Checkbox defaultChecked={false} onChange={onChange} />
Checkbox
</label>, container);
10 years ago
````