/** * title: "带描述的单选框" * description: "在Radio中添加描述文案。" */ import React, { useState } from 'react'; import { Radio } from '@alicloud/console-components'; const List = [ { label: '输入文字', value: 'A', }, { label: '输入文字', value: 'B', }, { label: '输入文字', value: 'C', }, ]; export default () => { const [checkedList, setCheckedList] = useState(''); return (
单选合集标题
setCheckedList(`${value}`)} > {List.map((item) => ( {item.label}

对于选项的描述/解释文案,对于选项的描述/解释文案

))}
); };