import { Balloon, Checkbox, Form, FormItem, Icon, Input, Radio, Select } from '@alicloud/console-components';
import React, { useState } from 'react';
const formItemLayout = {
labelCol: {
span: 8,
},
wrapperCol: {
span: 16,
},
};
export const dataSource = [
{
value: '10001',
label: '选项A',
},
{
value: '10002',
label: '选项B',
},
];
export default () => {
const [visible, setVisible] = useState(false);
const handleSubmit = (values) => {
// @ts-ignore
console.log('Get form value:', values);
};
const renderLable = (text: string) => (
{text}