import * as React from 'react' import { Radio } from 'element-react' import { Radio as RadioNext } from 'element-react/next' class Component extends React.Component<{}, {}> { state = { value: 3 } onChange = (value) => { } render() { const { value } = this.state return (
111 备选项 备选项 备选项 备选项 备选项 111 备选项 备选项 备选项 备选项 备选项
) } }