mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 03:18:11 +00:00
329 B
329 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);