---
order: 1
title:
zh-CN: 单选组合
en-US: Radio Group
---
## zh-CN
一组互斥的 Radio 配合使用。
## en-US
A group of radio components.
```jsx
import { Radio } from 'antd';
const RadioGroup = Radio.Group;
class App extends React.Component {
state = {
value: 1,
}
onChange = (e) => {
console.log('radio checked', e.target.value);
this.setState({
value: e.target.value,
});
}
render() {
return (
A
B
C
D
);
}
}
ReactDOM.render(, mountNode);
```