mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
14 lines
252 B
JavaScript
14 lines
252 B
JavaScript
import React from 'react';
|
|
import Radio from './radio';
|
|
|
|
export default class RadioButton extends React.Component {
|
|
static defaultProps = {
|
|
prefixCls: 'ant-radio-button',
|
|
}
|
|
render() {
|
|
return (
|
|
<Radio {...this.props} />
|
|
);
|
|
}
|
|
}
|