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.

25 lines
329 B

---
order: 0
title:
zh-CN: 基本用法
en-US: Basic
---
10 years ago
## zh-CN
10 years ago
简单的 checkbox。
## en-US
Basic usage of checkbox.
```jsx
import { Checkbox } from 'antd';
9 years ago
function onChange(e) {
console.log(`checked = ${e.target.checked}`);
10 years ago
}
ReactDOM.render(<Checkbox onChange={onChange}>Checkbox</Checkbox>, mountNode);
```