--- order: 1 title: zh-CN: 单选组合 en-US: Radio Group --- ## zh-CN 一组互斥的 Radio 配合使用。 ## en-US A group of radio components. ```tsx import type { RadioChangeEvent } from 'antd'; import { Radio } from 'antd'; import React, { useState } from 'react'; const App: React.FC = () => { const [value, setValue] = useState(1); const onChange = (e: RadioChangeEvent) => { console.log('radio checked', e.target.value); setValue(e.target.value); }; return ( A B C D ); }; export default App; ```