mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-10 21:36:30 +10:00
339 B
339 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 0 |
|
zh-CN
简单的 checkbox。
en-US
Basic usage of checkbox.
import { Checkbox } from 'antd';
function onChange(e) {
console.log(`checked = ${e.target.checked}`);
}
ReactDOM.render(
<Checkbox onChange={onChange}>Checkbox</Checkbox>
, mountNode);