mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-01 22:24:25 +08:00
753c01ae18
fix antd.notification
22 lines
369 B
Markdown
22 lines
369 B
Markdown
# 基本用法
|
|
|
|
- order: 0
|
|
|
|
简单的 checkbox。
|
|
|
|
---
|
|
|
|
````jsx
|
|
import { Checkbox } from 'antd';
|
|
const container = document.getElementById('components-checkbox-demo-basic');
|
|
|
|
function onChange(e) {
|
|
console.log('checked = ' + e.target.checked);
|
|
}
|
|
|
|
ReactDOM.render(<label>
|
|
<Checkbox defaultChecked={false} onChange={onChange} />
|
|
Checkbox
|
|
</label>, container);
|
|
````
|